From 1517ba72857e18af02ddd442010e0d7c7280067b Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Sun, 2 Apr 2017 21:33:54 +0200 Subject: [PATCH] PSP: Fixed error messages. --- src/thread/psp/SDL_syssem.c | 2 +- src/video/psp/SDL_pspgl.c | 2 +- src/video/psp/SDL_pspvideo.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/thread/psp/SDL_syssem.c b/src/thread/psp/SDL_syssem.c index 1d4305c547827..c76a9e208d180 100644 --- a/src/thread/psp/SDL_syssem.c +++ b/src/thread/psp/SDL_syssem.c @@ -108,7 +108,7 @@ int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout) case SCE_KERNEL_ERROR_WAIT_TIMEOUT: return SDL_MUTEX_TIMEDOUT; default: - return SDL_SetError("WaitForSingleObject() failed"); + return SDL_SetError("sceKernelWaitSema() failed"); } } diff --git a/src/video/psp/SDL_pspgl.c b/src/video/psp/SDL_pspgl.c index f8ff10bfe434a..dbcf20c6603ff 100644 --- a/src/video/psp/SDL_pspgl.c +++ b/src/video/psp/SDL_pspgl.c @@ -174,7 +174,7 @@ int PSP_GL_SwapWindow(_THIS, SDL_Window * window) { if (!eglSwapBuffers(_this->gl_data->display, _this->gl_data->surface)) { - return SDL_SetError("!eglSwapBuffers() failed"); + return SDL_SetError("eglSwapBuffers() failed"); } return 0; } diff --git a/src/video/psp/SDL_pspvideo.c b/src/video/psp/SDL_pspvideo.c index 2a47793eeafe7..91ad24816f50a 100644 --- a/src/video/psp/SDL_pspvideo.c +++ b/src/video/psp/SDL_pspvideo.c @@ -297,7 +297,7 @@ PSP_GetWindowWMInfo(_THIS, SDL_Window * window, struct SDL_SysWMinfo *info) if (info->version.major <= SDL_MAJOR_VERSION) { return SDL_TRUE; } else { - SDL_SetError("application not compiled with SDL %d.%d", + SDL_SetError("Application not compiled with SDL %d.%d", SDL_MAJOR_VERSION, SDL_MINOR_VERSION); return SDL_FALSE; }