From 7529570ab86b8a73801dc7e00a64af24a78239ac Mon Sep 17 00:00:00 2001 From: feos Date: Sat, 7 Oct 2017 23:17:02 +0300 Subject: [PATCH] tastudio: unbreak things if user cancels movie conversion on file open --- BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs index 30c4349282..63be9aa051 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs @@ -72,11 +72,10 @@ namespace BizHawk.Client.EmuHawk } else if (ofd.FileName.EndsWith(".bkm") || ofd.FileName.EndsWith(".bk2")) // todo: proper extention iteration { - Mainform.StartNewMovie(MovieService.Get(ofd.FileName), false); - var result1 = MessageBox.Show("This is a regular movie, a new project must be created from it, in order to use in TAStudio\nProceed?", "Convert movie", MessageBoxButtons.OKCancel, MessageBoxIcon.Question); if (result1 == DialogResult.OK) { + Mainform.StartNewMovie(MovieService.Get(ofd.FileName), false); ConvertCurrentMovieToTasproj(); StartNewMovieWrapper(false); SetUpColumns();