From e99b37065490ab97b30dc2390ace5ea98169fce0 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 4 May 2014 13:20:59 +0000 Subject: [PATCH] put core name into nes savestates --- BizHawk.Client.Common/PathManager.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.Common/PathManager.cs b/BizHawk.Client.Common/PathManager.cs index 8d9c1050e6..b47be0e1b0 100644 --- a/BizHawk.Client.Common/PathManager.cs +++ b/BizHawk.Client.Common/PathManager.cs @@ -263,7 +263,12 @@ namespace BizHawk.Client.Common public static string SaveStatePrefix(GameInfo game) { var name = FilesystemSafeName(game); - + + if (Global.Emulator.SystemId == "NES") + { + name += "." + Global.Emulator.Attributes().CoreName; + } + if (Global.MovieSession.Movie.IsActive) { name += "." + Path.GetFileNameWithoutExtension(Global.MovieSession.Movie.Filename);