mirror of
https://git.citron-emu.org/citron/emulator
synced 2025-12-28 06:13:37 +00:00
The TitleID check was broken due to using || operator which evaluated to 1 instead of a title ID value, preventing the recovery mechanism from working. - Fix title_ids.h: Replace incorrect || expression with proper LittleNightmares3Base constant (0x010066101A55A000) - Update physical_core.cpp: Use GetBaseTitleID() to match both base and update title ID variants This now correctly identifies Little Nightmares 3 and enables the recovery mechanism that sets PC to LR when detecting null pointer execution loops. Signed-off-by: Zephyron <zephyron@citron-emu.org>