Fixed getting the controller index when specifying --virtual (thanks @zturtleman)

This commit is contained in:
Sam Lantinga 2022-05-16 06:16:32 -07:00
parent 5953422c09
commit e3fd8feae6

View File

@ -820,7 +820,7 @@ main(int argc, char *argv[])
}
}
if (argv[i] && *argv[i] != '-') {
controller_index = SDL_atoi(argv[1]);
controller_index = SDL_atoi(argv[i]);
break;
}
}