Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed SDL_HasScreenKeyboardSupport() returning SDL_TRUE for PSP.
Browse files Browse the repository at this point in the history
There is currently no implementation and therefore no support.
  • Loading branch information
philippwiesemann committed May 5, 2013
1 parent ac9e669 commit a497721
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/psp/SDL_pspvideo.c
Expand Up @@ -314,7 +314,7 @@ PSP_GetWindowWMInfo(_THIS, SDL_Window * window, struct SDL_SysWMinfo *info)
/* TO Write Me*/
SDL_bool PSP_HasScreenKeyboardSupport(_THIS)
{
return SDL_TRUE;
return SDL_FALSE;
}
void PSP_ShowScreenKeyboard(_THIS, SDL_Window *window)
{
Expand Down

0 comments on commit a497721

Please sign in to comment.