From 7923f4d131447785528323ac8504c8cf830d0a5e Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 2 Jan 2015 17:22:17 +0000 Subject: [PATCH] Ram Watch and TAStudio - fix default filename generation when doing a save as --- BizHawk.Client.EmuHawk/tools/ToolHelpers.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/ToolHelpers.cs b/BizHawk.Client.EmuHawk/tools/ToolHelpers.cs index 93bd6ada00..460400fd39 100644 --- a/BizHawk.Client.EmuHawk/tools/ToolHelpers.cs +++ b/BizHawk.Client.EmuHawk/tools/ToolHelpers.cs @@ -45,7 +45,7 @@ namespace BizHawk.Client.EmuHawk } else { - sfd.FileName = "NULL"; + sfd.FileName = PathManager.FilesystemSafeName(Global.Game); sfd.InitialDirectory = PathManager.MakeAbsolutePath(Global.Config.PathEntries.MoviesPathFragment, null); } @@ -91,7 +91,7 @@ namespace BizHawk.Client.EmuHawk } else { - sfd.FileName = "NULL"; + sfd.FileName = PathManager.FilesystemSafeName(Global.Game); sfd.InitialDirectory = PathManager.MakeAbsolutePath(Global.Config.PathEntries.WatchPathFragment, null); }