diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2026-09-17 01:32:08 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-09-17 01:32:08 +0200 |
| commit | 3d26cfb1f3c877916867ef10ea3c516ddf5e7e42 (patch) | |
| tree | d9d4d12932bf2ca278c205ddfaf39daec67479bb /Source | |
| parent | a96b5da8562c387acb2f43a4133c45c8bdcecd1e (diff) | |
| parent | 2039b5524e7c975de1404ca02241f531b30aa38f (diff) | |
Merge pull request #14869 from cristian64/ram_override_ios
Core: Fix RAM override setup in IOS.
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/Core/IOS/IOS.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/IOS/IOS.cpp b/Source/Core/Core/IOS/IOS.cpp index 49c0b2bbd3..f49b82e0ec 100644 --- a/Source/Core/Core/IOS/IOS.cpp +++ b/Source/Core/Core/IOS/IOS.cpp @@ -221,7 +221,7 @@ static void ReleasePPCAncast(Core::System& system) void RAMOverrideForIOSMemoryValues(Memory::MemoryManager& memory, MemorySetupType setup_type) { // Don't touch anything if the feature isn't enabled. - if (!Config::Get(Config::MAIN_RAM_OVERRIDE_ENABLE) || + if (!Config::Get(Config::MAIN_RAM_OVERRIDE_ENABLE) && SConfig::GetInstance().GetSimulatedMemorySize() <= Memory::MEM1_SIZE_RETAIL) { return; |
