From 954adf4ab645c053779c8681c2c895cffcce6101 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 7 Jun 2020 08:31:27 -0500 Subject: [PATCH] remove dependency on an IMovie from GetRetroSaveRAMDirectory, since it shoudl only be getting the directly, not the the filename --- src/BizHawk.Client.Common/CoreFileProvider.cs | 2 +- .../config/PathEntryCollectionExtensions.cs | 7 +------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/src/BizHawk.Client.Common/CoreFileProvider.cs b/src/BizHawk.Client.Common/CoreFileProvider.cs index 1da69b1aff..c95708c764 100644 --- a/src/BizHawk.Client.Common/CoreFileProvider.cs +++ b/src/BizHawk.Client.Common/CoreFileProvider.cs @@ -30,7 +30,7 @@ namespace BizHawk.Client.Common // Poop public string GetRetroSaveRAMDirectory(GameInfo game) - => _pathEntries.RetroSaveRamAbsolutePath(game, Global.MovieSession.Movie); + => _pathEntries.RetroSaveRamAbsolutePath(game); // Poop public string GetRetroSystemPath(GameInfo game) diff --git a/src/BizHawk.Client.Common/config/PathEntryCollectionExtensions.cs b/src/BizHawk.Client.Common/config/PathEntryCollectionExtensions.cs index ca7afef481..17138b9a67 100644 --- a/src/BizHawk.Client.Common/config/PathEntryCollectionExtensions.cs +++ b/src/BizHawk.Client.Common/config/PathEntryCollectionExtensions.cs @@ -237,7 +237,7 @@ namespace BizHawk.Client.Common } // Shenanigans - public static string RetroSaveRamAbsolutePath(this PathEntryCollection collection, GameInfo game, IMovie movie) + public static string RetroSaveRamAbsolutePath(this PathEntryCollection collection, GameInfo game) { var name = game.FilesystemSafeName(); name = Path.GetDirectoryName(name); @@ -248,11 +248,6 @@ namespace BizHawk.Client.Common name ??= ""; - if (movie.IsActive()) - { - name = Path.Combine(name, $"movie-{Path.GetFileNameWithoutExtension(movie.Filename)}"); - } - var pathEntry = collection[game.System, "Save RAM"] ?? collection[game.System, "Base"];