change names for alt dol settings to be more noob friendly and change the order they are displayed.

*special thanks to Old8oy for his extensive help on this*
couldn't have done it without you :P
This commit is contained in:
giantpune 2009-09-08 20:55:35 +00:00
parent c1f16850f9
commit 5d4ce8f31d
3 changed files with 6 additions and 6 deletions

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
<pd><ViewState><e p="gui\source\mload" x="false"></e><e p="gui\source\settings" x="true"></e><e p="gui\source\images" x="false"></e><e p="gui\source\prompts" x="true"></e><e p="gui\source\banner" x="false"></e><e p="gui\source\cheats" x="true"></e><e p="gui\source\network" x="false"></e><e p="gui\source\unzip" x="false"></e><e p="gui\source\usbloader" x="false"></e><e p="gui\source\xml" x="true"></e><e p="gui\source\fonts" x="false"></e><e p="gui\source\ramdisc" x="false"></e><e p="gui\source\sounds" x="false"></e><e p="gui\source\wad" x="false"></e><e p="gui" x="true"></e><e p="gui\source\homebrewboot" x="true"></e><e p="gui\source\language" x="false"></e><e p="gui\source" x="true"></e><e p="gui\source\libwbfs" x="false"></e><e p="gui\source\libwiigui" x="false"></e><e p="gui\source\patches" x="false"></e></ViewState></pd> <pd><ViewState><e p="gui\source\mload" x="false"></e><e p="gui\source\settings" x="true"></e><e p="gui\source\images" x="false"></e><e p="gui\source\prompts" x="false"></e><e p="gui\source\banner" x="false"></e><e p="gui\source\cheats" x="true"></e><e p="gui\source\network" x="false"></e><e p="gui\source\unzip" x="false"></e><e p="gui\source\usbloader" x="false"></e><e p="gui\source\xml" x="true"></e><e p="gui\source\fonts" x="false"></e><e p="gui\source\ramdisc" x="false"></e><e p="gui\source\sounds" x="false"></e><e p="gui\source\wad" x="false"></e><e p="gui" x="true"></e><e p="gui\source\homebrewboot" x="false"></e><e p="gui\source\language" x="false"></e><e p="gui\source" x="true"></e><e p="gui\source\libwbfs" x="false"></e><e p="gui\source\libwiigui" x="false"></e><e p="gui\source\patches" x="false"></e></ViewState></pd>

View File

@ -2011,7 +2011,7 @@ int GameSettings(struct discHdr * header) {
options2.SetName(6,"%s", tr("Error 002 fix")); options2.SetName(6,"%s", tr("Error 002 fix"));
options2.SetName(7,"%s", tr("Patch Country Strings")); options2.SetName(7,"%s", tr("Patch Country Strings"));
options2.SetName(8,"%s", tr("Alternate DOL")); options2.SetName(8,"%s", tr("Alternate DOL"));
options2.SetName(9,"%s", tr("DOL from disc")); options2.SetName(9,"%s", tr("Selected DOL"));
options2.SetName(10,"%s", tr("Block IOS Reload")); options2.SetName(10,"%s", tr("Block IOS Reload"));
for (int i = 0; i <= MAXOPTIONS-1; i++) options2.SetValue(i, NULL); for (int i = 0; i <= MAXOPTIONS-1; i++) options2.SetValue(i, NULL);
optionBrowser2.SetScrollbar(1); optionBrowser2.SetScrollbar(1);
@ -2100,8 +2100,8 @@ int GameSettings(struct discHdr * header) {
if (countrystrings == on) options2.SetValue(7,tr("ON")); if (countrystrings == on) options2.SetValue(7,tr("ON"));
else if (countrystrings == off) options2.SetValue(7,tr("OFF")); else if (countrystrings == off) options2.SetValue(7,tr("OFF"));
if (alternatedol == on) options2.SetValue(8,tr("DOL from SD")); if (alternatedol == on) options2.SetValue(8,tr("Load From SD/USB"));
if (alternatedol == 2) options2.SetValue(8,tr("DOL from disc")); if (alternatedol == 2) options2.SetValue(8,tr("Select a DOL"));
else if (alternatedol == off) options2.SetValue(8,tr("OFF")); else if (alternatedol == off) options2.SetValue(8,tr("OFF"));
if (alternatedol == on) options2.SetValue(9,tr("SD selected")); if (alternatedol == on) options2.SetValue(9,tr("SD selected"));
@ -2179,7 +2179,7 @@ int GameSettings(struct discHdr * header) {
countrystrings = (countrystrings+1) % 2; countrystrings = (countrystrings+1) % 2;
break; break;
case 8: case 8:
alternatedol = (alternatedol+1) % 3; alternatedol = (alternatedol+2) % 3;
break; break;
case 9: case 9:
if (alternatedol == 2) { if (alternatedol == 2) {