From d0d5df44c910a0bfa00155463a50a525356687fb Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 5 Feb 2016 21:57:40 -0500 Subject: [PATCH] Tastudio - create settings sooner, hopefully fixes null reference errors with the splitter controls --- BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index 60ba53a89d..c591bbdde0 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -103,6 +103,7 @@ namespace BizHawk.Client.EmuHawk public TAStudio() { + Settings = new TAStudioSettings(); InitializeComponent(); if (Global.Emulator != null) @@ -124,7 +125,6 @@ namespace BizHawk.Client.EmuHawk ScreenshotControl.Visible = false; Controls.Add(ScreenshotControl); ScreenshotControl.BringToFront(); - Settings = new TAStudioSettings(); // TODO: show this at all times or hide it when saving is done? this.SavingProgressBar.Visible = false;