From a8db070755cbb15b1446a6db88e1a5321fd53b8a Mon Sep 17 00:00:00 2001 From: CTCaer Date: Sat, 21 Mar 2020 13:15:24 +0200 Subject: [PATCH] fss: Fix launching CFW on sys for < 7.0.0 --- bootloader/hos/fss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootloader/hos/fss.c b/bootloader/hos/fss.c index 0398410..3164cad 100644 --- a/bootloader/hos/fss.c +++ b/bootloader/hos/fss.c @@ -111,7 +111,7 @@ int parse_fss(launch_ctxt_t *ctxt, const char *path, fss0_sept_t *sept_ctxt) stock = true; } - if (ctxt->pkg1_id->kb <= KB_FIRMWARE_VERSION_620 && (!emu_cfg.enabled || h_cfg.emummc_force_disable)) + if (stock && ctxt->pkg1_id->kb <= KB_FIRMWARE_VERSION_620 && (!emu_cfg.enabled || h_cfg.emummc_force_disable)) return 1; }