Skip to content

Commit

Permalink
test: Fixed wrong verbose flag check (thanks, watcom.hecht!).
Browse files Browse the repository at this point in the history
Fixes Bugzilla #4826.
  • Loading branch information
icculus committed Oct 15, 2019
1 parent 16dee35 commit e9c1e12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/SDL_test_common.c
Expand Up @@ -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());
}
Expand Down

0 comments on commit e9c1e12

Please sign in to comment.