From 1127d30fd89620e685dc7bced7e2dd0ce289a3d4 Mon Sep 17 00:00:00 2001 From: Zephyron Date: Mon, 10 Nov 2025 20:55:54 +1000 Subject: [PATCH] Fix: Restrict PC return recovery to Little Nightmares 3 with adjusted threshold Only applies to Little Nightmares 3 (title ID: 010066101A55A800). Signed-off-by: Zephyron --- src/citron/util/title_ids.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/citron/util/title_ids.h b/src/citron/util/title_ids.h index ddbe4756c..7f1c26754 100644 --- a/src/citron/util/title_ids.h +++ b/src/citron/util/title_ids.h @@ -14,7 +14,7 @@ private: public: static constexpr u64 FinalFantasyTactics = 0x010038B015560000ULL; - static constexpr u64 LittleNightmares3 = 0x010066101A55A800ULL; + static constexpr u64 LittleNightmares3 = 0x010066101A55A800ULL || 0x010066101A55A000ULL; }; } // namespace UICommon