From af70f0f232de0cd2274ec32e17f9c9509663b6ab Mon Sep 17 00:00:00 2001 From: Stephen Miller <56742918+StevenMiller123@users.noreply.github.com> Date: Sun, 4 May 2025 07:50:02 -0500 Subject: [PATCH] Fix patches Completely missed this, whoops. --- src/core/module.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/module.cpp b/src/core/module.cpp index 28380ad53..f31bbed6c 100644 --- a/src/core/module.cpp +++ b/src/core/module.cpp @@ -226,7 +226,7 @@ void Module::LoadModuleToMemory(u32& max_tls_index) { LOG_INFO(Core_Linker, "program entry addr ..........: {:#018x}", entry_addr); if (MemoryPatcher::g_eboot_address == 0) { - if (name == "eboot") { + if (name == "eboot.bin") { MemoryPatcher::g_eboot_address = base_virtual_addr; MemoryPatcher::g_eboot_image_size = base_size; MemoryPatcher::OnGameLoaded();