mirror of
https://github.com/shadps4-emu/ext-SDL.git
synced 2024-11-23 18:19:40 +00:00
Fixed returning -1 in a function returning bool
This commit is contained in:
parent
36a091cc43
commit
ace6920d44
@ -3205,7 +3205,7 @@ SDL_bool SDLTest_DrawCharacter(SDL_Renderer *renderer, float x, float y, Uint32
|
||||
*/
|
||||
character = SDL_CreateSurface(charWidth, charHeight, SDL_PIXELFORMAT_RGBA8888);
|
||||
if (!character) {
|
||||
return -1;
|
||||
return SDL_FALSE;
|
||||
}
|
||||
|
||||
charpos = SDLTest_FontData + ci * 8;
|
||||
@ -3237,7 +3237,7 @@ SDL_bool SDLTest_DrawCharacter(SDL_Renderer *renderer, float x, float y, Uint32
|
||||
* Check pointer
|
||||
*/
|
||||
if (cache->charTextureCache[ci] == NULL) {
|
||||
return -1;
|
||||
return SDL_FALSE;
|
||||
}
|
||||
|
||||
SDL_SetTextureScaleMode(cache->charTextureCache[ci], SDL_SCALEMODE_NEAREST);
|
||||
|
Loading…
Reference in New Issue
Block a user