瀏覽代碼

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

Fixes Bugzilla #4826.
Ryan C. Gordon 6 年之前
父節點
當前提交
e9c1e1269c
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/test/SDL_test_common.c

+ 1 - 1
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());
         }