mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-04 18:45:05 +01:00
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:
parent
c1f16850f9
commit
5d4ce8f31d
File diff suppressed because one or more lines are too long
2
gui.pnps
2
gui.pnps
@ -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>
|
@ -2011,7 +2011,7 @@ int GameSettings(struct discHdr * header) {
|
||||
options2.SetName(6,"%s", tr("Error 002 fix"));
|
||||
options2.SetName(7,"%s", tr("Patch Country Strings"));
|
||||
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"));
|
||||
for (int i = 0; i <= MAXOPTIONS-1; i++) options2.SetValue(i, NULL);
|
||||
optionBrowser2.SetScrollbar(1);
|
||||
@ -2100,8 +2100,8 @@ int GameSettings(struct discHdr * header) {
|
||||
if (countrystrings == on) options2.SetValue(7,tr("ON"));
|
||||
else if (countrystrings == off) options2.SetValue(7,tr("OFF"));
|
||||
|
||||
if (alternatedol == on) options2.SetValue(8,tr("DOL from SD"));
|
||||
if (alternatedol == 2) options2.SetValue(8,tr("DOL from disc"));
|
||||
if (alternatedol == on) options2.SetValue(8,tr("Load From SD/USB"));
|
||||
if (alternatedol == 2) options2.SetValue(8,tr("Select a DOL"));
|
||||
else if (alternatedol == off) options2.SetValue(8,tr("OFF"));
|
||||
|
||||
if (alternatedol == on) options2.SetValue(9,tr("SD selected"));
|
||||
@ -2179,7 +2179,7 @@ int GameSettings(struct discHdr * header) {
|
||||
countrystrings = (countrystrings+1) % 2;
|
||||
break;
|
||||
case 8:
|
||||
alternatedol = (alternatedol+1) % 3;
|
||||
alternatedol = (alternatedol+2) % 3;
|
||||
break;
|
||||
case 9:
|
||||
if (alternatedol == 2) {
|
||||
|
Loading…
Reference in New Issue
Block a user