Reverted the meaning of video_fullscreen_first to what it used to be.

This commit is contained in:
OBattler
2021-09-18 21:33:13 +02:00
parent 61b26ab754
commit a491b3a35c
3 changed files with 5 additions and 4 deletions

View File

@@ -1427,7 +1427,7 @@ ui_init(int nCmdShow)
}
/* Initialize the mouse module. */
if (!start_in_fullscreen && !video_fullscreen_first)
if (!start_in_fullscreen)
win_mouse_init();
/*
@@ -1459,7 +1459,7 @@ ui_init(int nCmdShow)
plat_resize(scrnsz_x, scrnsz_y);
/* Initialize the rendering window, or fullscreen. */
if (start_in_fullscreen || video_fullscreen_first)
if (start_in_fullscreen)
plat_setfullscreen(3);
/* Fire up the machine. */