From 1c4fd5456e129f2cfa34f2057ffd1119f937c16e Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Sun, 8 May 2011 17:09:34 +0000 Subject: [PATCH] Restore input log playback --- BizHawk.MultiClient/MainForm.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index 6b7b7f6548..fa97d3cd17 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -99,7 +99,7 @@ namespace BizHawk.MultiClient InitControls(); Global.Emulator = new NullEmulator(); - InputLog.StopMovie(); + //InputLog.StopMovie(); Global.ActiveController = Global.NullControls; Global.Sound = new Sound(Handle, Global.DSound); Global.Sound.StartSound(); @@ -640,12 +640,13 @@ namespace BizHawk.MultiClient if (InputLog.GetMovieMode() == MOVIEMODE.RECORD) InputLog.StartNewRecording(); //TODO: Uncomment and check for a user movie selected? - else if (InputLog.GetMovieMode() == MOVIEMODE.PLAY) + /* + else if (InputLog.GetMovieMode() == MOVIEMODE.PLAY) { InputLog.LoadMovie(); //TODO: Debug InputLog.StartPlayback(); //TODO: Debug } - + */ //setup the throttle based on platform's specifications //(one day later for some systems we will need to modify it at runtime as the display mode changes) { @@ -696,7 +697,7 @@ namespace BizHawk.MultiClient writer.Close(); } Global.Emulator = new NullEmulator(); - InputLog.StopMovie(); + //InputLog.StopMovie(); Global.ActiveController = Global.NullControls; }