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|*.*";