diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2018-11-07 10:34:00 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-07 10:34:00 +0100 |
| commit | cb806dd63cdcfaaa7a38b4b0f605e33854d67d33 (patch) | |
| tree | b1797cc3bee9c9b4571e95b22fd298dc1d06fac9 /Source/Core | |
| parent | dac58a859ca30262b79f72036f1e78ea54be83c4 (diff) | |
| parent | dfa4395ba0f17f5860d4954e078344cc8ac6dfad (diff) | |
Merge pull request #7546 from Techjar/fix-memcard-saving
Core/Config: Fix memcard path not being saved
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/ConfigLoaders/IsSettingSaveable.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/Core/ConfigLoaders/IsSettingSaveable.cpp b/Source/Core/Core/ConfigLoaders/IsSettingSaveable.cpp index c3345bad24..be51266c2f 100644 --- a/Source/Core/Core/ConfigLoaders/IsSettingSaveable.cpp +++ b/Source/Core/Core/ConfigLoaders/IsSettingSaveable.cpp @@ -26,7 +26,11 @@ bool IsSettingSaveable(const Config::ConfigLocation& config_location) return true; const static std::vector<Config::ConfigLocation> s_setting_saveable{ + // Main.Core + Config::MAIN_DEFAULT_ISO.location, + Config::MAIN_MEMCARD_A_PATH.location, + Config::MAIN_MEMCARD_B_PATH.location, // Graphics.Hardware |
