diff --git a/BizHawk.MultiClient/movie/MovieImport.cs b/BizHawk.MultiClient/movie/MovieImport.cs index 6c5ce92628..8405f4abb6 100644 --- a/BizHawk.MultiClient/movie/MovieImport.cs +++ b/BizHawk.MultiClient/movie/MovieImport.cs @@ -64,6 +64,8 @@ namespace BizHawk.MultiClient m = ImportVMV(path, out errorMsg, out warningMsg); break; case ".ZMV": + if (!Global.MainForm.INTERIM) + return m; m = ImportZMV(path, out errorMsg, out warningMsg); break; } @@ -1761,7 +1763,6 @@ namespace BizHawk.MultiClient ); } else if (warningMsg != "") - // TODO: Move this to the controllers used check. warningMsg = "Controller " + player + " not supported."; } // The controller data contains frames. @@ -2452,7 +2453,6 @@ namespace BizHawk.MultiClient ); } else if (warningMsg != "") - // TODO: Move this to the controllers used check. warningMsg = "Controller " + player + " not supported."; } }