test: use SDL_HINT_(AUDIO,VIDEO)_DRIVER macro

This commit is contained in:
Anonymous Maarten
2024-07-11 23:37:11 +02:00
parent f4f4b453de
commit 40f9fd854f
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ int main(int argc, char *argv[])
}
/* Force the offscreen renderer, if it cannot be created then fail out */
SDL_SetHint("SDL_VIDEO_DRIVER", "offscreen");
SDL_SetHint(SDL_HINT_VIDEO_DRIVER, "offscreen");
if (SDL_InitSubSystem(SDL_INIT_VIDEO) < 0) {
SDL_Log("Couldn't initialize the offscreen video driver: %s\n",
SDL_GetError());