mirror of
https://github.com/coderkei/akmenu-next.git
synced 2025-06-18 08:55:46 -04:00
fixed typo
This commit is contained in:
parent
a1499897f8
commit
0129331a0b
@ -81,7 +81,7 @@ void cGlobalSettings::loadSettings() {
|
||||
autorunWithLastRom = ini.GetInt("system", "autorunWithLastRom", autorunWithLastRom);
|
||||
homebrewreset = ini.GetInt("system", "homebrewreset", homebrewreset);
|
||||
resetHotKey = ini.GetInt("system", "resethotkey", resetHotKey);
|
||||
phatCol = ini.GetInt("system", "phatcol", phatCol);
|
||||
phatCol = ini.GetInt("system", "phatCol", phatCol);
|
||||
|
||||
temp = ini.GetString("system", "scrollSpeed", "fast");
|
||||
scrollSpeed =
|
||||
|
@ -543,7 +543,7 @@ void cMainWnd::setParam(void) {
|
||||
_values.push_back(".nds.sav");
|
||||
_values.push_back(".sav");
|
||||
settingWnd.addSettingItem(LANG("file settings", "save extension"), _values, gs().saveExt);
|
||||
_values.clear();
|
||||
_values.clear();
|
||||
_values.push_back("no");
|
||||
_values.push_back("yes");
|
||||
settingWnd.addSettingItem(LANG("file settings", "use saves folder"), _values, gs().saveDir);
|
||||
@ -554,10 +554,12 @@ void cMainWnd::setParam(void) {
|
||||
_values.push_back("disable");
|
||||
_values.push_back("enable");
|
||||
settingWnd.addSettingItem(LANG("nds bootstrap", "dsmode"), _values, gs().dsOnly);
|
||||
#ifdef __DSIMODE__
|
||||
_values.clear();
|
||||
_values.push_back("disable");
|
||||
_values.push_back("enable");
|
||||
settingWnd.addSettingItem(LANG("nds bootstrap", "phatCol"), _values, gs().phatCol);
|
||||
#endif
|
||||
_values.clear();
|
||||
_values.push_back("release");
|
||||
_values.push_back("nightly");
|
||||
@ -613,8 +615,8 @@ void cMainWnd::setParam(void) {
|
||||
|
||||
// page 4: ndsbs
|
||||
gs().dsOnly = settingWnd.getItemSelection(3, 0);
|
||||
gs().phatCol = settingWnd.getItemSelection(3, 1);
|
||||
gs().nightly = settingWnd.getItemSelection(3, 2);
|
||||
gs().nightly = settingWnd.getItemSelection(3, 1);
|
||||
gs().phatCol = settingWnd.getItemSelection(3, 2);
|
||||
|
||||
// page 5: other
|
||||
gs().cheats = settingWnd.getItemSelection(4, 0);
|
||||
|
@ -23,3 +23,4 @@ scrollSpeed = fast
|
||||
nds-bootstrap = true
|
||||
slot2mode = ask
|
||||
resethotkey = 0
|
||||
phatCol = 0
|
||||
|
Loading…
Reference in New Issue
Block a user