Fix warning: enumeration value 'SDL_BLENDMODE_INVALID' not explicitly handled in switch

This commit is contained in:
Sylvain 2022-10-18 10:41:10 +02:00
parent 3ec4c9b3b9
commit 790fa3156c
No known key found for this signature in database
GPG Key ID: 5F87E02E5BC0939E
1 changed files with 3 additions and 0 deletions

View File

@ -1206,6 +1206,9 @@ IsSupportedBlendMode(SDL_Renderer * renderer, SDL_BlendMode blendMode)
case SDL_BLENDMODE_MUL:
return SDL_TRUE;
case SDL_BLENDMODE_INVALID:
return SDL_FALSE;
default:
return renderer->SupportsBlendMode && renderer->SupportsBlendMode(renderer, blendMode);
}