Skip to content

Commit

Permalink
Update main.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
TNTwise authored Dec 25, 2023
1 parent e32f08a commit 3c9059a
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -662,17 +662,18 @@ int main(int argc, char** argv)
// fine
rife_v2 = true;
}
else if (model.find(PATHSTR("rife-v3")) != path_t::npos)
else if (model.find(PATHSTR("rife-v3.6")) != path_t::npos)
{
// fine
rife_v2 = true;
rife_v2 = false;
rife_v4 = true;
}
else if (model.find(PATHSTR("rife-v3.6")) != path_t::npos)
else if (model.find(PATHSTR("rife-v3")) != path_t::npos)
{
// fine
rife_v2 = false;
rife_v4 = true;
rife_v2 = true;
}

else if (model.find(PATHSTR("rife-v4")) != path_t::npos)
{
// fine
Expand Down

0 comments on commit 3c9059a

Please sign in to comment.