From c9f86ca0a01e03b525330e1ac3ea18d17d0f615b Mon Sep 17 00:00:00 2001 From: pagefault <> Date: Sun, 26 Aug 2001 02:33:24 +0000 Subject: [PATCH] Fixed fullscreen mode --- zsnes/src/win/winlink.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsnes/src/win/winlink.cpp b/zsnes/src/win/winlink.cpp index 28cb1af5..39b7d5ae 100644 --- a/zsnes/src/win/winlink.cpp +++ b/zsnes/src/win/winlink.cpp @@ -1748,7 +1748,7 @@ void initwinvideo(void) CloseWindow(hMainWindow); } - if (SaveMainWindowPos == 1 && MainWindowX != -1) { X = MainWindowX; Y = MainWindowY; } + if (SaveMainWindowPos == 1 && MainWindowX != -1 && FullScreen == 0) { X = MainWindowX; Y = MainWindowY; } hMainWindow = CreateWindow( "ZSNESWIN", WinName, WS_VISIBLE|WS_POPUP,X,Y, //WS_OVERLAPPED "ZSNESWIN" WindowWidth,WindowHeight,NULL,NULL,hInst,NULL);