Skip to content

Commit

Permalink
Fix ROM path not being saved sometimes
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed Dec 20, 2018
1 parent 2186921 commit 682b432
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion romsel_aktheme/arm9/source/common/dsimenusettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ void DSiMenuPlusPlusSettings::loadSettings()
dsiWarePubPath = settingsini.GetString("SRLOADER", "DSIWARE_PUB", dsiWarePubPath);
dsiWarePrvPath = settingsini.GetString("SRLOADER", "DSIWARE_PRV", dsiWarePrvPath);
launchType = settingsini.GetInt("SRLOADER", "LAUNCH_TYPE", launchType);
romPath = settingsini.GetString("SRLOADER", "ROM_PATH", romPath);
homebrewArg = settingsini.GetString("SRLOADER", "HOMEBREW_ARG", homebrewArg);
homebrewBootstrap = settingsini.GetInt("SRLOADER", "HOMEBREW_BOOTSTRAP", homebrewBootstrap);

Expand Down
1 change: 0 additions & 1 deletion romsel_dsimenutheme/arm9/source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,6 @@ void LoadSettings(void) {
boostVram = settingsini.GetInt("NDS-BOOTSTRAP", "BOOST_VRAM", 0);
bstrap_dsiMode = settingsini.GetInt("NDS-BOOTSTRAP", "DSI_MODE", 0);

romPath = settingsini.GetString("SRLOADER", "ROM_PATH", romPath);
dsiWareSrlPath = settingsini.GetString("SRLOADER", "DSIWARE_SRL", dsiWareSrlPath);
dsiWarePubPath = settingsini.GetString("SRLOADER", "DSIWARE_PUB", dsiWarePubPath);
dsiWarePrvPath = settingsini.GetString("SRLOADER", "DSIWARE_PRV", dsiWarePrvPath);
Expand Down
1 change: 0 additions & 1 deletion romsel_r4theme/arm9/source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,6 @@ void LoadSettings(void) {
boostVram = settingsini.GetInt("NDS-BOOTSTRAP", "BOOST_VRAM", 0);
bstrap_dsiMode = settingsini.GetInt("NDS-BOOTSTRAP", "DSI_MODE", 0);

romPath = settingsini.GetString("SRLOADER", "ROM_PATH", romPath);
dsiWareSrlPath = settingsini.GetString("SRLOADER", "DSIWARE_SRL", dsiWareSrlPath);
dsiWarePubPath = settingsini.GetString("SRLOADER", "DSIWARE_PUB", dsiWarePubPath);
dsiWarePrvPath = settingsini.GetString("SRLOADER", "DSIWARE_PRV", dsiWarePrvPath);
Expand Down

1 comment on commit 682b432

@RocketRobz
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Didn't work. Seems to be an issue with games launched directly from flashcard.

Please sign in to comment.