Explorar el Código

checkkeys: Readded the KEYUP event test.

Ryan C. Gordon hace 10 años
padre
commit
423262789b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      test/checkkeys.c

+ 1 - 1
test/checkkeys.c

@@ -144,7 +144,7 @@ loop()
     while (SDL_PollEvent(&event)) {
         switch (event.type) {
         case SDL_KEYDOWN:
-        //case SDL_KEYUP:
+        case SDL_KEYUP:
 		    PrintKey(&event.key.keysym, (event.key.state == SDL_PRESSED) ? SDL_TRUE : SDL_FALSE, (event.key.repeat) ? SDL_TRUE : SDL_FALSE);
             break;
         case SDL_TEXTINPUT: