summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2025-11-27 14:30:39 -0600
committerGitHub <noreply@github.com>2025-11-27 14:30:39 -0600
commite8c512dfb5b26b464c70f6bb89475533d5351a94 (patch)
tree2ddb7b177279be01f958ed5aae1055afa7b02da5
parent2e0b91c627878d10fee4c6c07061b6f0eaf6138e (diff)
parentfd0b875ab558c7e9becc1dc329a5d51a9f35b8e8 (diff)
Merge pull request #14183 from LillyJadeKatrin/retroachievements-eternal-darkness-testing-my-sanity
RetroAchievements - Remove Hardcore Check from ApplyMemoryPatch
-rw-r--r--Source/Core/Core/Debugger/PPCDebugInterface.cpp3
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;