Skip to content

Commit

Permalink
SporeModManager: simplify args size check
Browse files Browse the repository at this point in the history
  • Loading branch information
Rosalie241 committed Nov 16, 2023
1 parent b68f166 commit 266a489
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SporeModManager/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ int main(int argc, char** argv)
arg_str_type arg = args.at(i);

// skip empty or invalid arguments
if (arg.empty() || arg.size() < 2)
if (arg.size() < 2)
{
continue;
}
Expand Down

0 comments on commit 266a489

Please sign in to comment.