test: Fixed wrong verbose flag check (thanks, watcom.hecht!).

Fixes Bugzilla #4826.
This commit is contained in:
Ryan C. Gordon 2019-10-15 12:02:19 -04:00
parent dc66966cc6
commit 6339b66aab

View file

@ -1072,7 +1072,7 @@ SDLTest_CommonInit(SDLTest_CommonState * state)
SDL_GetError());
return SDL_FALSE;
}
if (state->verbose & VERBOSE_VIDEO) {
if (state->verbose & VERBOSE_AUDIO) {
SDL_Log("Audio driver: %s\n",
SDL_GetCurrentAudioDriver());
}