Bug #127 ยป 0032-SDL3_gfx-Replace-SDL_GetColorKey-call-with-SDL_GetSu.patch
| dependencies/SDL3_gfx/SDL3_rotozoom.c | ||
|---|---|---|
|
Uint32 _colorkey(SDL_Surface *src)
|
||
|
{
|
||
|
Uint32 key = 0;
|
||
|
SDL_GetColorKey(src, &key);
|
||
|
SDL_GetSurfaceColorKey(src, &key);
|
||
|
return key;
|
||
|
}
|
||