mirror of
https://github.com/coderkei/akmenu-next.git
synced 2025-06-18 17:05:48 -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);
|
autorunWithLastRom = ini.GetInt("system", "autorunWithLastRom", autorunWithLastRom);
|
||||||
homebrewreset = ini.GetInt("system", "homebrewreset", homebrewreset);
|
homebrewreset = ini.GetInt("system", "homebrewreset", homebrewreset);
|
||||||
resetHotKey = ini.GetInt("system", "resethotkey", resetHotKey);
|
resetHotKey = ini.GetInt("system", "resethotkey", resetHotKey);
|
||||||
phatCol = ini.GetInt("system", "phatcol", phatCol);
|
phatCol = ini.GetInt("system", "phatCol", phatCol);
|
||||||
|
|
||||||
temp = ini.GetString("system", "scrollSpeed", "fast");
|
temp = ini.GetString("system", "scrollSpeed", "fast");
|
||||||
scrollSpeed =
|
scrollSpeed =
|
||||||
|
@ -554,10 +554,12 @@ void cMainWnd::setParam(void) {
|
|||||||
_values.push_back("disable");
|
_values.push_back("disable");
|
||||||
_values.push_back("enable");
|
_values.push_back("enable");
|
||||||
settingWnd.addSettingItem(LANG("nds bootstrap", "dsmode"), _values, gs().dsOnly);
|
settingWnd.addSettingItem(LANG("nds bootstrap", "dsmode"), _values, gs().dsOnly);
|
||||||
|
#ifdef __DSIMODE__
|
||||||
_values.clear();
|
_values.clear();
|
||||||
_values.push_back("disable");
|
_values.push_back("disable");
|
||||||
_values.push_back("enable");
|
_values.push_back("enable");
|
||||||
settingWnd.addSettingItem(LANG("nds bootstrap", "phatCol"), _values, gs().phatCol);
|
settingWnd.addSettingItem(LANG("nds bootstrap", "phatCol"), _values, gs().phatCol);
|
||||||
|
#endif
|
||||||
_values.clear();
|
_values.clear();
|
||||||
_values.push_back("release");
|
_values.push_back("release");
|
||||||
_values.push_back("nightly");
|
_values.push_back("nightly");
|
||||||
@ -613,8 +615,8 @@ void cMainWnd::setParam(void) {
|
|||||||
|
|
||||||
// page 4: ndsbs
|
// page 4: ndsbs
|
||||||
gs().dsOnly = settingWnd.getItemSelection(3, 0);
|
gs().dsOnly = settingWnd.getItemSelection(3, 0);
|
||||||
gs().phatCol = settingWnd.getItemSelection(3, 1);
|
gs().nightly = settingWnd.getItemSelection(3, 1);
|
||||||
gs().nightly = settingWnd.getItemSelection(3, 2);
|
gs().phatCol = settingWnd.getItemSelection(3, 2);
|
||||||
|
|
||||||
// page 5: other
|
// page 5: other
|
||||||
gs().cheats = settingWnd.getItemSelection(4, 0);
|
gs().cheats = settingWnd.getItemSelection(4, 0);
|
||||||
|
@ -23,3 +23,4 @@ scrollSpeed = fast
|
|||||||
nds-bootstrap = true
|
nds-bootstrap = true
|
||||||
slot2mode = ask
|
slot2mode = ask
|
||||||
resethotkey = 0
|
resethotkey = 0
|
||||||
|
phatCol = 0
|
||||||
|
Loading…
Reference in New Issue
Block a user