From a49772113b0bcef8091c499bfd16dbdee9be06bc Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Sun, 5 May 2013 15:39:37 +0200 Subject: [PATCH] Fixed SDL_HasScreenKeyboardSupport() returning SDL_TRUE for PSP. There is currently no implementation and therefore no support. --- src/video/psp/SDL_pspvideo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/psp/SDL_pspvideo.c b/src/video/psp/SDL_pspvideo.c index 1cffe8a06..d84e69b92 100644 --- a/src/video/psp/SDL_pspvideo.c +++ b/src/video/psp/SDL_pspvideo.c @@ -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) {