diff options
| author | LillyJadeKatrin <lilly.kitty.1988@gmail.com> | 2025-11-27 11:52:56 -0500 |
|---|---|---|
| committer | LillyJadeKatrin <lilly.kitty.1988@gmail.com> | 2025-11-27 11:52:56 -0500 |
| commit | fd0b875ab558c7e9becc1dc329a5d51a9f35b8e8 (patch) | |
| tree | 3e3bc808d6183221bee70f275ac86ed271ca5327 | |
| parent | 887c68eed44949fbbac962eedff79d0a7db6d520 (diff) | |
RetroAchievements - Remove Hardcore Check from ApplyMemoryPatch
This was blocking all memory patches from executing properly in hardcore mode even when contained in the Allowlist.
| -rw-r--r-- | Source/Core/Core/Debugger/PPCDebugInterface.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/Core/Core/Debugger/PPCDebugInterface.cpp b/Source/Core/Core/Debugger/PPCDebugInterface.cpp index f38d1c8346..fd105df2b4 100644 --- a/Source/Core/Core/Debugger/PPCDebugInterface.cpp +++ b/Source/Core/Core/Debugger/PPCDebugInterface.cpp @@ -32,9 +32,6 @@ void ApplyMemoryPatch(const Core::CPUThreadGuard& guard, std::span<u8> value, const u32 address, bool store_existing_value) { - if (AchievementManager::GetInstance().IsHardcoreModeActive()) - return; - if (value.empty()) return; |
