PSP: Fixed error messages.

Philipp Wiesemann 2017-04-02 21:33:54 +02:00
parent f96cdca4e7
commit 1517ba7285
3 changed files with 3 additions and 3 deletions

View File

@ -108,7 +108,7 @@ int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout)
case SCE_KERNEL_ERROR_WAIT_TIMEOUT: case SCE_KERNEL_ERROR_WAIT_TIMEOUT:
return SDL_MUTEX_TIMEDOUT; return SDL_MUTEX_TIMEDOUT;
default: default:
return SDL_SetError("WaitForSingleObject() failed"); return SDL_SetError("sceKernelWaitSema() failed");
} }
} }

View File

@ -174,7 +174,7 @@ int
PSP_GL_SwapWindow(_THIS, SDL_Window * window) PSP_GL_SwapWindow(_THIS, SDL_Window * window)
{ {
if (!eglSwapBuffers(_this->gl_data->display, _this->gl_data->surface)) { if (!eglSwapBuffers(_this->gl_data->display, _this->gl_data->surface)) {
return SDL_SetError("!eglSwapBuffers() failed"); return SDL_SetError("eglSwapBuffers() failed");
} }
return 0; return 0;
} }

View File

@ -297,7 +297,7 @@ PSP_GetWindowWMInfo(_THIS, SDL_Window * window, struct SDL_SysWMinfo *info)
if (info->version.major <= SDL_MAJOR_VERSION) { if (info->version.major <= SDL_MAJOR_VERSION) {
return SDL_TRUE; return SDL_TRUE;
} else { } 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); SDL_MAJOR_VERSION, SDL_MINOR_VERSION);
return SDL_FALSE; return SDL_FALSE;
} }