Fixed warning C6011: Dereferencing NULL pointer 'display'.

main
Sam Lantinga 2023-12-04 20:35:14 -08:00
parent 3db4695ac7
commit 4ccc53edfe
1 changed files with 1 additions and 1 deletions

View File

@ -1508,7 +1508,7 @@ static int SDL_UpdateFullscreenMode(SDL_Window *window, SDL_bool fullscreen)
break;
}
}
if (i == _this->num_displays) {
if (!display || i == _this->num_displays) {
/* Already not fullscreen on any display */
goto done;
}