SDL_test: fix infinite loop when passing invalid argument

main
Anonymous Maarten 2023-03-16 23:31:06 +01:00 committed by Anonymous Maarten
parent c52ad54b05
commit 774e51627e
1 changed files with 1 additions and 1 deletions

View File

@ -659,7 +659,7 @@ SDLTest_CommonDefaultArgs(SDLTest_CommonState *state, const int argc, char **arg
int i = 1;
while (i < argc) {
const int consumed = SDLTest_CommonArg(state, i);
if (consumed == 0) {
if (consumed <= 0) {
SDLTest_CommonLogUsage(state, argv[0], NULL);
return SDL_FALSE;
}