From c0b1f6a2856fd21477160586aabf75ea97a9c22b Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 30 Nov 2014 18:24:28 +0000 Subject: [PATCH] remove IsNull() usage for tools that require IMemoryDomains, better to fail catastrophically as they shouldn't be able to get this far. --- BizHawk.Client.EmuHawk/tools/ToolHelpers.cs | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/ToolHelpers.cs b/BizHawk.Client.EmuHawk/tools/ToolHelpers.cs index b5d4ff4bf9..93bd6ada00 100644 --- a/BizHawk.Client.EmuHawk/tools/ToolHelpers.cs +++ b/BizHawk.Client.EmuHawk/tools/ToolHelpers.cs @@ -43,11 +43,6 @@ namespace BizHawk.Client.EmuHawk sfd.FileName = Path.GetFileNameWithoutExtension(currentFile); sfd.InitialDirectory = Path.GetDirectoryName(currentFile); } - else if (!Global.Emulator.IsNull()) - { - sfd.FileName = PathManager.FilesystemSafeName(Global.Game); - sfd.InitialDirectory = PathManager.MakeAbsolutePath(Global.Config.PathEntries.MoviesPathFragment, null); - } else { sfd.FileName = "NULL"; @@ -94,11 +89,6 @@ namespace BizHawk.Client.EmuHawk sfd.FileName = Path.GetFileNameWithoutExtension(currentFile); sfd.InitialDirectory = Path.GetDirectoryName(currentFile); } - else if (!Global.Emulator.IsNull()) - { - sfd.FileName = PathManager.FilesystemSafeName(Global.Game); - sfd.InitialDirectory = PathManager.MakeAbsolutePath(Global.Config.PathEntries.WatchPathFragment, null); - } else { sfd.FileName = "NULL"; @@ -144,10 +134,6 @@ namespace BizHawk.Client.EmuHawk { sfd.FileName = Path.GetFileNameWithoutExtension(currentFile); } - else if (!Global.Emulator.IsNull()) - { - sfd.FileName = PathManager.FilesystemSafeName(Global.Game); - } sfd.InitialDirectory = PathManager.GetCheatsPath(Global.Game); sfd.Filter = "Cheat Files (*.cht)|*.cht|All Files|*.*";