mirror of
https://github.com/Ryujinx/SDL.git
synced 2024-12-23 11:55:38 +00:00
Fix warning: enumeration value 'SDL_BLENDMODE_INVALID' not explicitly handled in switch
This commit is contained in:
parent
3ec4c9b3b9
commit
790fa3156c
|
@ -1206,6 +1206,9 @@ IsSupportedBlendMode(SDL_Renderer * renderer, SDL_BlendMode blendMode)
|
||||||
case SDL_BLENDMODE_MUL:
|
case SDL_BLENDMODE_MUL:
|
||||||
return SDL_TRUE;
|
return SDL_TRUE;
|
||||||
|
|
||||||
|
case SDL_BLENDMODE_INVALID:
|
||||||
|
return SDL_FALSE;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return renderer->SupportsBlendMode && renderer->SupportsBlendMode(renderer, blendMode);
|
return renderer->SupportsBlendMode && renderer->SupportsBlendMode(renderer, blendMode);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue