Skip to content

Commit

Permalink
PSP: Fixed a syntax error.
Browse files Browse the repository at this point in the history
Found by Cppcheck.
  • Loading branch information
philippwiesemann committed Aug 24, 2015
1 parent 83e94e2 commit 991feaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/psp/SDL_pspevents.c
Expand Up @@ -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]));

}
}
Expand Down

0 comments on commit 991feaf

Please sign in to comment.