PSP: Fixed returning success from unsupported SDL_RenderReadPixels().

This also fixed the missing error message.
Philipp Wiesemann 2016-04-01 21:13:58 +02:00
parent d1e4814120
commit 831597f714
1 changed files with 1 additions and 1 deletions

View File

@ -861,7 +861,7 @@ PSP_RenderReadPixels(SDL_Renderer * renderer, const SDL_Rect * rect,
Uint32 pixel_format, void * pixels, int pitch)
{
return 0;
return SDL_Unsupported();
}