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

View File

@ -108,7 +108,7 @@ static int audio_initQuitAudio(void *arg)
}
/* Call Init */
SDL_SetHint("SDL_AUDIO_DRIVER", audioDriver);
SDL_SetHint(SDL_HINT_AUDIO_DRIVER, audioDriver);
result = SDL_InitSubSystem(SDL_INIT_AUDIO);
SDLTest_AssertPass("Call to SDL_InitSubSystem(SDL_INIT_AUDIO) with driver='%s'", audioDriver);
SDLTest_AssertCheck(result == 0, "Validate result value; expected: 0 got: %d", result);
@ -122,7 +122,7 @@ static int audio_initQuitAudio(void *arg)
audioDriver = NULL;
/* Call Init */
SDL_SetHint("SDL_AUDIO_DRIVER", audioDriver);
SDL_SetHint(SDL_HINT_AUDIO_DRIVER, audioDriver);
result = SDL_InitSubSystem(SDL_INIT_AUDIO);
SDLTest_AssertPass("Call to SDL_AudioInit(NULL)");
SDLTest_AssertCheck(result == 0, "Validate result value; expected: 0 got: %d", result);
@ -175,7 +175,7 @@ static int audio_initOpenCloseQuitAudio(void *arg)
for (j = 0; j < 2; j++) {
/* Call Init */
SDL_SetHint("SDL_AUDIO_DRIVER", audioDriver);
SDL_SetHint(SDL_HINT_AUDIO_DRIVER, audioDriver);
result = SDL_InitSubSystem(SDL_INIT_AUDIO);
SDLTest_AssertPass("Call to SDL_InitSubSystem(SDL_INIT_AUDIO) with driver='%s'", audioDriver);
SDLTest_AssertCheck(result == 0, "Validate result value; expected: 0 got: %d", result);
@ -266,7 +266,7 @@ static int audio_pauseUnpauseAudio(void *arg)
for (j = 0; j < 2; j++) {
/* Call Init */
SDL_SetHint("SDL_AUDIO_DRIVER", audioDriver);
SDL_SetHint(SDL_HINT_AUDIO_DRIVER, audioDriver);
result = SDL_InitSubSystem(SDL_INIT_AUDIO);
SDLTest_AssertPass("Call to SDL_InitSubSystem(SDL_INIT_AUDIO) with driver='%s'", audioDriver);
SDLTest_AssertCheck(result == 0, "Validate result value; expected: 0 got: %d", result);

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());