Win32: correctly save window when toggling fullscreen

This commit is contained in:
OV2 2016-10-12 21:49:29 +02:00
parent d244da6890
commit 9118cf0c68
1 changed files with 2 additions and 2 deletions

View File

@ -591,12 +591,13 @@ void ToggleFullScreen ()
{
S9xSetPause (PAUSE_TOGGLE_FULL_SCREEN);
SaveMainWinPos();
if(GUI.EmulateFullscreen) {
HMONITOR hm;
MONITORINFO mi;
GUI.EmulatedFullscreen = !GUI.EmulatedFullscreen;
if(GUI.EmulatedFullscreen) {
SaveMainWinPos();
if(GetMenu(GUI.hWnd)!=NULL)
SetMenu(GUI.hWnd,NULL);
SetWindowLongPtr (GUI.hWnd, GWL_STYLE, WS_POPUP|WS_VISIBLE);
@ -614,7 +615,6 @@ void ToggleFullScreen ()
} else {
GUI.FullScreen = !GUI.FullScreen;
if(GUI.FullScreen) {
SaveMainWinPos();
if(GetMenu(GUI.hWnd)!=NULL)
SetMenu(GUI.hWnd,NULL);
SetWindowLongPtr (GUI.hWnd, GWL_STYLE, WS_POPUP|WS_VISIBLE);