mirror of https://github.com/encounter/SDL.git
Fix typos
This commit is contained in:
parent
e455659467
commit
b2504b5da6
|
@ -489,7 +489,7 @@ void VITA_ShowScreenKeyboard(_THIS, SDL_Window *window)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
#elif
|
#else
|
||||||
SceWChar16 *title = u"";
|
SceWChar16 *title = u"";
|
||||||
SceWChar16 *text = u"";
|
SceWChar16 *text = u"";
|
||||||
|
|
||||||
|
@ -544,7 +544,7 @@ SDL_bool VITA_IsScreenKeyboardShown(_THIS, SDL_Window *window)
|
||||||
#if defined(SDL_VIDEO_VITA_PVR)
|
#if defined(SDL_VIDEO_VITA_PVR)
|
||||||
SDL_VideoData *videodata = (SDL_VideoData *)_this->driverdata;
|
SDL_VideoData *videodata = (SDL_VideoData *)_this->driverdata;
|
||||||
return videodata->ime_active;
|
return videodata->ime_active;
|
||||||
#elif
|
#else
|
||||||
SceCommonDialogStatus dialogStatus = sceImeDialogGetStatus();
|
SceCommonDialogStatus dialogStatus = sceImeDialogGetStatus();
|
||||||
return (dialogStatus == SCE_COMMON_DIALOG_STATUS_RUNNING);
|
return (dialogStatus == SCE_COMMON_DIALOG_STATUS_RUNNING);
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -53,9 +53,10 @@ typedef struct SDL_WindowData
|
||||||
SDL_bool uses_gles;
|
SDL_bool uses_gles;
|
||||||
SceUID buffer_uid;
|
SceUID buffer_uid;
|
||||||
void* buffer;
|
void* buffer;
|
||||||
|
#if defined(SDL_VIDEO_VITA_PVR)
|
||||||
EGLSurface egl_surface;
|
EGLSurface egl_surface;
|
||||||
EGLContext egl_context;
|
EGLContext egl_context;
|
||||||
|
#endif
|
||||||
} SDL_WindowData;
|
} SDL_WindowData;
|
||||||
|
|
||||||
extern SDL_Window * Vita_Window;
|
extern SDL_Window * Vita_Window;
|
||||||
|
|
Loading…
Reference in New Issue