mirror of
https://github.com/encounter/SDL.git
synced 2025-06-10 00:23:41 +00:00
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…
x
Reference in New Issue
Block a user