From 58c3c8c19a441aa58d90c13442e09388f425f5d8 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Mon, 7 Dec 2020 19:34:13 -0800 Subject: [PATCH] fusee: take three tries for a basic assignment --- fusee/fusee-secondary/src/nxboot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fusee/fusee-secondary/src/nxboot.c b/fusee/fusee-secondary/src/nxboot.c index 6a8cb02f7..415ec9f16 100644 --- a/fusee/fusee-secondary/src/nxboot.c +++ b/fusee/fusee-secondary/src/nxboot.c @@ -478,9 +478,9 @@ static void nxboot_configure_exosphere(uint32_t target_firmware, unsigned int ke const bool is_emummc = exo_emummc_cfg->base_cfg.magic == MAGIC_EMUMMC_CONFIG && exo_emummc_cfg->base_cfg.type != EMUMMC_TYPE_NONE; if (keygen_type) { - exo_cfg.flags = EXOSPHERE_FLAG_PERFORM_620_KEYGEN; + exo_cfg.flags[0] = EXOSPHERE_FLAG_PERFORM_620_KEYGEN; } else { - exo_cfg.flags = 0; + exo_cfg.flags[0] = 0; } /* Setup exosphere parse configuration with defaults. */