mirror of https://github.com/libsdl-org/SDL
Fix 'potentially uninitialized local pointer variable' error in UWP builds
This commit is contained in:
parent
b7f8117d40
commit
2f7b885df9
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue