Skip to content

Commit

Permalink
checkkeys: Readded the KEYUP event test.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed May 1, 2015
1 parent 9979bab commit 4232627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/checkkeys.c
Expand Up @@ -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:
Expand Down

0 comments on commit 4232627

Please sign in to comment.