From 70869549a97a3d0b279b176f7220915cfb117687 Mon Sep 17 00:00:00 2001 From: rmc Date: Sun, 5 Nov 2023 12:33:43 -0500 Subject: [PATCH] Add SystemUpdater to blocklist iirc one or two versions of TWL SystemUpdater can fit within the NAND. Definitely block it in case. --- arm9/src/install.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arm9/src/install.c b/arm9/src/install.c index 269f07a..88b1a52 100644 --- a/arm9/src/install.c +++ b/arm9/src/install.c @@ -456,6 +456,7 @@ bool install(char* fpath, bool systemTitle) (h->tid_low & 0xFF) == region || //only blacklist console region h->tid_low == 0x484e4541 || //and block specifically international PictoChat h->tid_low == 0x484e4441 || //and Download Play for good measure + h->tid_low == 0x30535541 || //just to be safe also block sysupdaters. iirc one dos fit in NAND if you've removed some things region == 0 //if the region check failed somehow, blacklist everything )) {