diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 8824785c71..1f8de6d771 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -1258,7 +1258,15 @@ namespace BizHawk.Client.EmuHawk private void SetWindowText() { string str = ""; - + + if (Global.Emulator == null) + { + // in some weird cirumstances, this can get called too early before any emulator exists + // just ignore it + Text = "BizHawk"; + return; + } + if (_inResizeLoop) { var size = GlobalWin.PresentationPanel.NativeSize;