mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Merge pull request #3755 from thedax/win32RememberWindowPosSize
Win32: Don't allow SavePosition to execute if we're entering fullscreen.
This commit is contained in:
commit
f26dfcb382
1 changed files with 2 additions and 0 deletions
|
@ -160,6 +160,8 @@ namespace MainWindow
|
|||
}
|
||||
|
||||
void SavePosition() {
|
||||
if (g_Config.bFullScreen) return;
|
||||
|
||||
WINDOWPLACEMENT placement;
|
||||
GetWindowPlacement(hwndMain, &placement);
|
||||
if (placement.showCmd == SW_SHOWNORMAL) {
|
||||
|
|
Loading…
Add table
Reference in a new issue