Explorar el Código

testspriteminimal: only quit when escape is pressed

Sam Lantinga hace 11 meses
padre
commit
370c0426ce
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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;
         }
     }