mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-11 22:08:14 +00:00
Fixed warning: 'fA' may be used uninitialized in this function
This commit is contained in:
@@ -1744,7 +1744,7 @@ int SDL_SetTextureAlphaModFloat(SDL_Texture *texture, float alpha)
|
||||
|
||||
int SDL_GetTextureAlphaMod(SDL_Texture *texture, Uint8 *alpha)
|
||||
{
|
||||
float fA;
|
||||
float fA = 1.0f;
|
||||
|
||||
if (SDL_GetTextureAlphaModFloat(texture, &fA) < 0) {
|
||||
return -1;
|
||||
|
Reference in New Issue
Block a user