Skip to content

Commit d55c4e8

Browse files
committed
Fix typo
fixes ea9b17f
1 parent 2635e49 commit d55c4e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BizHawk.Client.EmuHawk/MainForm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2416,7 +2416,7 @@ private FileWriteResult SaveConfig(string path = "")
24162416
if (Config.SaveWindowPosition)
24172417
{
24182418
if (WindowState is FormWindowState.Normal
2419-
&& Location is { X: -32000, Y: -32000 }) // this is the location when minimized on Windows --adelikat // and can occur in some unknown edge case even when `WindowState is Normal` --yoshi
2419+
&& Location is not { X: -32000, Y: -32000 }) // this is the location when minimized on Windows --adelikat // and can occur in some unknown edge case even when `WindowState is Normal` --yoshi
24202420
{
24212421
Config.MainWindowPosition = Location;
24222422
Config.MainWindowSize = Size;

0 commit comments

Comments
 (0)