From a0a45853ddda3200b297eb00d6c8c90e9dc3003b Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Tue, 1 Dec 2020 00:58:21 -0800 Subject: [PATCH] nogc: update for new lafw --- fusee/fusee-secondary/src/nxboot.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/fusee/fusee-secondary/src/nxboot.c b/fusee/fusee-secondary/src/nxboot.c index 86af0d34a..d1a329c2d 100644 --- a/fusee/fusee-secondary/src/nxboot.c +++ b/fusee/fusee-secondary/src/nxboot.c @@ -525,6 +525,10 @@ static void nxboot_configure_stratosphere(uint32_t target_firmware) { if (target_firmware >= ATMOSPHERE_TARGET_FIRMWARE_9_0_0 && !(fuse_get_reserved_odm(7) & ~0x000003FF)) { kip_patches_set_enable_nogc(); } + /* Check if the fuses are < 11.0.0, but firmware is >= 11.0.0 */ + if (target_firmware >= ATMOSPHERE_TARGET_FIRMWARE_11_0_0 && !(fuse_get_reserved_odm(7) & ~0x00001FFF)) { + kip_patches_set_enable_nogc(); + } } }