Browse Source

testspriteminimal: only quit when escape is pressed

Sam Lantinga 5 tháng trước cách đây
mục cha
commit
370c0426ce
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      test/testspriteminimal.c

+ 2 - 1
test/testspriteminimal.c

@@ -93,7 +93,8 @@ static void loop(void)
 
     /* Check for events */
     while (SDL_PollEvent(&event)) {
-        if (event.type == SDL_EVENT_QUIT || event.type == SDL_EVENT_KEY_DOWN) {
+        if (event.type == SDL_EVENT_QUIT ||
+            (event.type == SDL_EVENT_KEY_DOWN && event.key.key == SDLK_ESCAPE)) {
             done = 1;
         }
     }