From 7c9d170248272d8b6674d90923ef351c5a129f62 Mon Sep 17 00:00:00 2001 From: beirich Date: Sat, 9 Jul 2011 18:08:10 +0000 Subject: [PATCH] fix input save crash --- BizHawk.MultiClient/MainForm.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index f32677c868..5dcc4fda12 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -111,7 +111,8 @@ namespace BizHawk.MultiClient if (Global.Sound != null) Global.Sound.StartSound(); }; - InitControls(); + Input.Initialize(); + InitControls(); Global.Emulator = new NullEmulator(); Global.ActiveController = Global.NullControls; Global.Sound = new Sound(Handle, Global.DSound); @@ -399,7 +400,6 @@ namespace BizHawk.MultiClient private void InitControls() { - Input.Initialize(); var controls = new Controller(ClientControlsDef); controls.BindMulti("Fast Forward", Global.Config.FastForwardBinding); controls.BindMulti("Rewind", Global.Config.RewindBinding);