Don't show resolution info when entering/exiting fullscreen. It's not really necessary.

This commit is contained in:
The Dax 2013-09-26 19:38:15 -04:00
parent 24d587c991
commit 7fde11af5f

View file

@ -276,7 +276,7 @@ namespace MainWindow
// Reset full screen indicator.
g_Config.bFullScreen = false;
CorrectCursor();
ResizeDisplay(true, true);
ResizeDisplay();
ShowOwnedPopups(hwndMain, TRUE);
W32Util::MakeTopMost(hwndMain, g_Config.bTopMost);
}
@ -304,7 +304,7 @@ namespace MainWindow
// Set full screen indicator.
g_Config.bFullScreen = true;
CorrectCursor();
ResizeDisplay(true, true);
ResizeDisplay();
ShowOwnedPopups(hwndMain, FALSE);
UpdateScreenScale();
}