NSF: Fixed minimum window size being set to 0 after loading NSF files

This commit is contained in:
Sour 2018-12-26 13:02:40 -05:00
parent d6d188282c
commit f550b83025

View File

@ -563,6 +563,11 @@ namespace Mesen.GUI.Forms
enabled = false;
}
if(_fullscreenMode == enabled) {
//Fullscreen mode already matches, no need to do anything
return;
}
//Setup message to show on screen when paused while in fullscreen (instructions to revert to windowed mode)
InteropEmu.SetPauseScreenMessage("");
if(enabled) {