mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-10 06:01:52 +00:00
fusee: fix config init/ini read order
This commit is contained in:
parent
3f7238cb10
commit
241b8f4627
1 changed files with 8 additions and 4 deletions
|
@ -225,6 +225,13 @@ static uint32_t nxboot_get_target_firmware(const void *package1loader) {
|
||||||
static bool nxboot_configure_emummc(exo_emummc_config_t *exo_emummc_config) {
|
static bool nxboot_configure_emummc(exo_emummc_config_t *exo_emummc_config) {
|
||||||
emummc_config_t emummc_cfg = {.enabled = false, .id = 0, .sector = -1, .path = "", .nintendo_path = ""};
|
emummc_config_t emummc_cfg = {.enabled = false, .id = 0, .sector = -1, .path = "", .nintendo_path = ""};
|
||||||
|
|
||||||
|
/* Initialize some defaults. */
|
||||||
|
memset(exo_emummc_config, 0, sizeof(*exo_emummc_config));
|
||||||
|
exo_emummc_config->base_cfg.magic = MAGIC_EMUMMC_CONFIG;
|
||||||
|
exo_emummc_config->base_cfg.type = EMUMMC_TYPE_NONE;
|
||||||
|
exo_emummc_config->base_cfg.id = 0;
|
||||||
|
exo_emummc_config->base_cfg.fs_version = FS_VER_1_0_0; /* Will be filled out later. */
|
||||||
|
|
||||||
char *emummc_ini = calloc(1, 0x10000);
|
char *emummc_ini = calloc(1, 0x10000);
|
||||||
if (!read_from_file(emummc_ini, 0xFFFF, "emummc/emummc.ini")) {
|
if (!read_from_file(emummc_ini, 0xFFFF, "emummc/emummc.ini")) {
|
||||||
free(emummc_ini);
|
free(emummc_ini);
|
||||||
|
@ -238,11 +245,8 @@ static bool nxboot_configure_emummc(exo_emummc_config_t *exo_emummc_config) {
|
||||||
|
|
||||||
free(emummc_ini);
|
free(emummc_ini);
|
||||||
|
|
||||||
memset(exo_emummc_config, 0, sizeof(*exo_emummc_config));
|
/* Initialize values from emummc config. */
|
||||||
exo_emummc_config->base_cfg.magic = MAGIC_EMUMMC_CONFIG;
|
|
||||||
exo_emummc_config->base_cfg.type = EMUMMC_TYPE_NONE;
|
|
||||||
exo_emummc_config->base_cfg.id = emummc_cfg.id;
|
exo_emummc_config->base_cfg.id = emummc_cfg.id;
|
||||||
exo_emummc_config->base_cfg.fs_version = FS_VER_1_0_0; /* Will be filled out later. */
|
|
||||||
strncpy(exo_emummc_config->emu_dir_path, emummc_cfg.nintendo_path, sizeof(exo_emummc_config->emu_dir_path));
|
strncpy(exo_emummc_config->emu_dir_path, emummc_cfg.nintendo_path, sizeof(exo_emummc_config->emu_dir_path));
|
||||||
exo_emummc_config->emu_dir_path[sizeof(exo_emummc_config->emu_dir_path) - 1] = '\0';
|
exo_emummc_config->emu_dir_path[sizeof(exo_emummc_config->emu_dir_path) - 1] = '\0';
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue