Fix 'potentially uninitialized local pointer variable' error in UWP builds

main
Cameron Cawley 2022-02-28 16:30:34 +00:00 committed by Sam Lantinga
parent b7f8117d40
commit 2f7b885df9
1 changed files with 1 additions and 1 deletions

View File

@ -2452,7 +2452,7 @@ static SDL_Surface *
SDL_CreateWindowFramebuffer(SDL_Window * window)
{
Uint32 format;
void *pixels;
void *pixels = NULL;
int pitch;
int bpp;
Uint32 Rmask, Gmask, Bmask, Amask;