Don't SavePosition if we're entering fullscreen.

This commit is contained in:
The Dax 2013-09-13 11:39:40 -04:00
parent 2d084ec747
commit 0f0df36180

View file

@ -159,6 +159,8 @@ namespace MainWindow
}
void SavePosition() {
if (g_Config.bFullScreen) return;
WINDOWPLACEMENT placement;
GetWindowPlacement(hwndMain, &placement);
if (placement.showCmd == SW_SHOWNORMAL) {