From 377650d68e26e9074758591a8e964b9aa8ca0ec1 Mon Sep 17 00:00:00 2001 From: adelikat Date: Thu, 29 Aug 2013 19:28:19 +0000 Subject: [PATCH] Fix saveram to have the .SaveRAM extension --- BizHawk.MultiClient/config/PathManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.MultiClient/config/PathManager.cs b/BizHawk.MultiClient/config/PathManager.cs index 2cdcfa5c82..d079a7681f 100644 --- a/BizHawk.MultiClient/config/PathManager.cs +++ b/BizHawk.MultiClient/config/PathManager.cs @@ -240,7 +240,7 @@ namespace BizHawk.MultiClient pathEntry = Global.Config.PathEntries[game.System, "Base"]; } - return Path.Combine(MakeAbsolutePath(pathEntry.Path, game.System), name); + return Path.Combine(MakeAbsolutePath(pathEntry.Path, game.System), name) + ".SaveRAM"; } public static string GetSaveStatePath(GameInfo game)