From 991feafa095af782dd8dd48ef28e98a2d9a55545 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Mon, 24 Aug 2015 22:31:36 +0200 Subject: [PATCH] PSP: Fixed a syntax error. Found by Cppcheck. --- src/video/psp/SDL_pspevents.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/psp/SDL_pspevents.c b/src/video/psp/SDL_pspevents.c index 64fc0f816..0ef4335fc 100644 --- a/src/video/psp/SDL_pspevents.c +++ b/src/video/psp/SDL_pspevents.c @@ -124,7 +124,7 @@ void PSP_PumpEvents(_THIS) /* not tested */ /* SDL_PrivateKeyboard(pressed?SDL_PRESSED:SDL_RELEASED, &sym); */ SDL_SendKeyboardKey((keys & keymap_psp[i].id) ? - SDL_PRESSED : SDL_RELEASED, SDL_GetScancodeFromKey(keymap[raw]); + SDL_PRESSED : SDL_RELEASED, SDL_GetScancodeFromKey(keymap[raw])); } }