mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-06-24 16:21:22 +00:00
Added missing calls to SDL_InvalidParamError("surface")
(cherry picked from commit 04e98d2236c02cbb10d0b88e1782b4dd4bf9d44a)
This commit is contained in:
parent
624905a7f1
commit
b07e5d38a2
|
@ -313,7 +313,7 @@ int SDL_SetSurfaceRLE(SDL_Surface *surface, int flag)
|
||||||
int flags;
|
int flags;
|
||||||
|
|
||||||
if (surface == NULL) {
|
if (surface == NULL) {
|
||||||
return -1;
|
return SDL_InvalidParamError("surface");
|
||||||
}
|
}
|
||||||
|
|
||||||
flags = surface->map->info.flags;
|
flags = surface->map->info.flags;
|
||||||
|
@ -496,7 +496,7 @@ int SDL_SetSurfaceColorMod(SDL_Surface *surface, Uint8 r, Uint8 g, Uint8 b)
|
||||||
int flags;
|
int flags;
|
||||||
|
|
||||||
if (surface == NULL) {
|
if (surface == NULL) {
|
||||||
return -1;
|
return SDL_InvalidParamError("surface");
|
||||||
}
|
}
|
||||||
|
|
||||||
surface->map->info.r = r;
|
surface->map->info.r = r;
|
||||||
|
@ -518,7 +518,7 @@ int SDL_SetSurfaceColorMod(SDL_Surface *surface, Uint8 r, Uint8 g, Uint8 b)
|
||||||
int SDL_GetSurfaceColorMod(SDL_Surface *surface, Uint8 *r, Uint8 *g, Uint8 *b)
|
int SDL_GetSurfaceColorMod(SDL_Surface *surface, Uint8 *r, Uint8 *g, Uint8 *b)
|
||||||
{
|
{
|
||||||
if (surface == NULL) {
|
if (surface == NULL) {
|
||||||
return -1;
|
return SDL_InvalidParamError("surface");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (r) {
|
if (r) {
|
||||||
|
@ -538,7 +538,7 @@ int SDL_SetSurfaceAlphaMod(SDL_Surface *surface, Uint8 alpha)
|
||||||
int flags;
|
int flags;
|
||||||
|
|
||||||
if (surface == NULL) {
|
if (surface == NULL) {
|
||||||
return -1;
|
return SDL_InvalidParamError("surface");
|
||||||
}
|
}
|
||||||
|
|
||||||
surface->map->info.a = alpha;
|
surface->map->info.a = alpha;
|
||||||
|
@ -558,7 +558,7 @@ int SDL_SetSurfaceAlphaMod(SDL_Surface *surface, Uint8 alpha)
|
||||||
int SDL_GetSurfaceAlphaMod(SDL_Surface *surface, Uint8 *alpha)
|
int SDL_GetSurfaceAlphaMod(SDL_Surface *surface, Uint8 *alpha)
|
||||||
{
|
{
|
||||||
if (surface == NULL) {
|
if (surface == NULL) {
|
||||||
return -1;
|
return SDL_InvalidParamError("surface");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (alpha) {
|
if (alpha) {
|
||||||
|
@ -572,7 +572,7 @@ int SDL_SetSurfaceBlendMode(SDL_Surface *surface, SDL_BlendMode blendMode)
|
||||||
int flags, status;
|
int flags, status;
|
||||||
|
|
||||||
if (surface == NULL) {
|
if (surface == NULL) {
|
||||||
return -1;
|
return SDL_InvalidParamError("surface");
|
||||||
}
|
}
|
||||||
|
|
||||||
status = 0;
|
status = 0;
|
||||||
|
@ -609,7 +609,7 @@ int SDL_SetSurfaceBlendMode(SDL_Surface *surface, SDL_BlendMode blendMode)
|
||||||
int SDL_GetSurfaceBlendMode(SDL_Surface *surface, SDL_BlendMode *blendMode)
|
int SDL_GetSurfaceBlendMode(SDL_Surface *surface, SDL_BlendMode *blendMode)
|
||||||
{
|
{
|
||||||
if (surface == NULL) {
|
if (surface == NULL) {
|
||||||
return -1;
|
return SDL_InvalidParamError("surface");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (blendMode == NULL) {
|
if (blendMode == NULL) {
|
||||||
|
|
Loading…
Reference in a new issue