소스 검색

Immediately minimize the goofy window in testaudiohotplug.

Ryan C. Gordon 10 년 전
부모
커밋
e9a7a81f28
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      test/testaudiohotplug.c

+ 2 - 1
test/testaudiohotplug.c

@@ -131,7 +131,8 @@ main(int argc, char *argv[])
         return (1);
     }
 
-    SDL_CreateWindow("testaudiohotplug", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, 640, 480, 0);
+    /* Some targets (Mac CoreAudio) need an event queue for audio hotplug, so make and immediately hide a window. */
+    SDL_MinimizeWindow(SDL_CreateWindow("testaudiohotplug", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, 640, 480, 0));
 
     if (argc > 1) {
         SDL_strlcpy(filename, argv[1], sizeof(filename));