mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-05-31 22:42:52 +08:00
Fixed warning C6011: Dereferencing NULL pointer 'display'.
This commit is contained in:
@@ -1508,7 +1508,7 @@ static int SDL_UpdateFullscreenMode(SDL_Window *window, SDL_bool fullscreen)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (i == _this->num_displays) {
|
if (!display || i == _this->num_displays) {
|
||||||
/* Already not fullscreen on any display */
|
/* Already not fullscreen on any display */
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user