testlocale: don't pass SDL_INIT_VIDEO to SDL_Init

main
Anonymous Maarten 2023-07-18 22:21:19 +02:00
parent ef4ce8cec5
commit e620925728
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ int main(int argc, char **argv)
SDLTest_CommonState *state;
/* Initialize test framework */
state = SDLTest_CommonCreateState(argv, SDL_INIT_VIDEO);
state = SDLTest_CommonCreateState(argv, 0);
if (state == NULL) {
return 1;
}