mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-02-25 06:36:54 +00:00
Fixed build warning
This commit is contained in:
parent
e086a1c183
commit
04e76499ea
|
@ -2178,7 +2178,7 @@ SDL_BlendOperation
|
||||||
SDL_GetBlendModeAlphaOperation(SDL_BlendMode blendMode)
|
SDL_GetBlendModeAlphaOperation(SDL_BlendMode blendMode)
|
||||||
{
|
{
|
||||||
blendMode = SDL_GetLongBlendMode(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: */
|
/* vi: set ts=4 sw=4 expandtab: */
|
||||||
|
|
Loading…
Reference in a new issue