Fix filename generation when there are colons in the game name, fixes #661

This commit is contained in:
adelikat 2016-09-21 10:27:28 -04:00
parent d954512214
commit 574584c079
1 changed files with 3 additions and 1 deletions

View File

@ -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);