From 9d21940b60f0f17ff088ddb8d2d5848b1a7d91c6 Mon Sep 17 00:00:00 2001 From: Gericom Date: Sun, 11 Jan 2026 13:25:56 +0100 Subject: [PATCH] Fix after merge --- arm9/source/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm9/source/main.cpp b/arm9/source/main.cpp index 9032f63..3de1841 100644 --- a/arm9/source/main.cpp +++ b/arm9/source/main.cpp @@ -239,7 +239,7 @@ static void handleSetupHomebrewBootstub(u32 dldiRequiredSpace) PatchCodeCollection patchCodeCollection; void* patchSpace = (void*)&HOMEBREW_BOOTSTUB[1]; auto romHeader = (const nds_header_ntr_t*)TWL_SHARED_MEMORY->ntrSharedMem.romHeader; - if (!romHeader->IsTwlRom()) + if (!romHeader->SupportsDsiMode()) { patchSpace = (u8*)patchSpace - 0x2F00000 + 0x2300000; }