From e9c1e1269cf587e5cb49e9857263d73b1a4d1803 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 15 Oct 2019 12:02:19 -0400 Subject: [PATCH] test: Fixed wrong verbose flag check (thanks, watcom.hecht!). Fixes Bugzilla #4826. --- src/test/SDL_test_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/SDL_test_common.c b/src/test/SDL_test_common.c index 95e6f6e42..cf46837ce 100644 --- a/src/test/SDL_test_common.c +++ b/src/test/SDL_test_common.c @@ -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()); }