From b8be890343dcbd014ae73dfcc2cd6ca9bb3412b6 Mon Sep 17 00:00:00 2001 From: kylelyk Date: Mon, 22 Dec 2014 22:31:47 +0000 Subject: [PATCH] TAStudio gives Message Box before exiting when loading bad file. --- BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index b97fa93436..171a83c522 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -495,7 +495,18 @@ namespace BizHawk.Client.EmuHawk private void LoadFile(FileInfo file) { CurrentTasMovie.Filename = file.FullName; - CurrentTasMovie.Load(); + try + { + CurrentTasMovie.Load(); + } + catch + { + MessageBox.Show( + "Tastudio could not open the file. Due to the loading process, the emulator/Tastudio may be in a unspecified state. Bizhawk will now close.", + "Tastudio", + MessageBoxButtons.OK); + Application.Exit(); + } Global.Config.RecentTas.Add(CurrentTasMovie.Filename); if (CurrentTasMovie.InputLogLength > 0) // TODO: this is probably reoccuring logic, break off into a function