From 574584c079b887a5d6d7232cd058628e684a56ef Mon Sep 17 00:00:00 2001 From: adelikat Date: Wed, 21 Sep 2016 10:27:28 -0400 Subject: [PATCH] Fix filename generation when there are colons in the game name, fixes #661 --- BizHawk.Client.Common/PathManager.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.Common/PathManager.cs b/BizHawk.Client.Common/PathManager.cs index ad5705e534..fb67171b72 100644 --- a/BizHawk.Client.Common/PathManager.cs +++ b/BizHawk.Client.Common/PathManager.cs @@ -256,7 +256,9 @@ namespace BizHawk.Client.Common public static string FilesystemSafeName(GameInfo game) { - var filesystemSafeName = game.Name.Replace("|", "+"); + var filesystemSafeName = game.Name + .Replace("|", "+") + .Replace(":", " -"); // adelikat - Path.GetFileName scraps everything to the left of a colon unfortunately, so we need this hack here // zero 06-nov-2015 - regarding the below, i changed my mind. for libretro i want subdirectories here. var filesystemDir = Path.GetDirectoryName(filesystemSafeName);