mirror of
https://github.com/yawut/SDL.git
synced 2026-03-29 13:14:37 -05:00
Fixed build warning
This commit is contained in:
parent
c44153c902
commit
fa575ea3ff
|
|
@ -2178,7 +2178,7 @@ SDL_BlendOperation
|
|||
SDL_GetBlendModeAlphaOperation(SDL_BlendMode blendMode)
|
||||
{
|
||||
blendMode = SDL_GetLongBlendMode(blendMode);
|
||||
return (SDL_BlendFactor)(((Uint32)blendMode >> 16) & 0xF);
|
||||
return (SDL_BlendOperation)(((Uint32)blendMode >> 16) & 0xF);
|
||||
}
|
||||
|
||||
/* vi: set ts=4 sw=4 expandtab: */
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user