Chage Default NDS Path & Add GBA Path Settings

This commit is contained in:
dark98
2021-07-04 00:07:38 +01:00
parent 4b902f1927
commit 714bbf14c4
5 changed files with 28 additions and 4 deletions
+4 -1
View File
@@ -61,6 +61,9 @@ public:
std::string ndsPath() const { return this->v_ndsPath; };
void ndsPath(const std::string &v) { this->v_ndsPath = v; if (!this->changesMade) this->changesMade = true; };
std::string gbaPath() const { return this->v_gbaPath; };
void gbaPath(const std::string &v) { this->v_gbaPath = v; if (!this->changesMade) this->changesMade = true; };
std::string archPath() const { return this->v_archivePath; };
void archPath(const std::string &v) { this->v_archivePath = v; if (!this->changesMade) this->changesMade = true; };
@@ -100,7 +103,7 @@ private:
bool changesMade = false;
std::string v_language = "en", v_lastStore = "darkstore-homebrew.eshop",
v_3dsxPath = "sdmc:/3ds", v_ndsPath = "sdmc:", v_archivePath = "sdmc:",
v_3dsxPath = "sdmc:/3ds", v_ndsPath = "sdmc:/roms/nds", v_gbaPath = "sdmc:/roms/gba", v_archivePath = "sdmc:",
v_shortcutPath = "sdmc:/3ds/DarkStore/shortcuts";
bool v_list = false, v_autoUpdate = true, v_metadata = true, v_updateCheck = true,