mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-10 06:01:52 +00:00
fusee: take three tries for a basic assignment
This commit is contained in:
parent
f62330c73b
commit
58c3c8c19a
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
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) {
|
if (keygen_type) {
|
||||||
exo_cfg.flags = EXOSPHERE_FLAG_PERFORM_620_KEYGEN;
|
exo_cfg.flags[0] = EXOSPHERE_FLAG_PERFORM_620_KEYGEN;
|
||||||
} else {
|
} else {
|
||||||
exo_cfg.flags = 0;
|
exo_cfg.flags[0] = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Setup exosphere parse configuration with defaults. */
|
/* Setup exosphere parse configuration with defaults. */
|
||||||
|
|
Loading…
Reference in a new issue