Browse Source

PSP: Fixed a syntax error.

Found by Cppcheck.
Philipp Wiesemann 10 years ago
parent
commit
991feafa09
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/video/psp/SDL_pspevents.c

+ 1 - 1
src/video/psp/SDL_pspevents.c

@@ -124,7 +124,7 @@ void PSP_PumpEvents(_THIS)
                 /* not tested */
                 /* not tested */
                 /* SDL_PrivateKeyboard(pressed?SDL_PRESSED:SDL_RELEASED, &sym); */
                 /* SDL_PrivateKeyboard(pressed?SDL_PRESSED:SDL_RELEASED, &sym); */
                 SDL_SendKeyboardKey((keys & keymap_psp[i].id) ?
                 SDL_SendKeyboardKey((keys & keymap_psp[i].id) ?
-                                    SDL_PRESSED : SDL_RELEASED, SDL_GetScancodeFromKey(keymap[raw]);
+                                    SDL_PRESSED : SDL_RELEASED, SDL_GetScancodeFromKey(keymap[raw]));
 
 
                 }
                 }
             }
             }