fix 'Exit to Wii U menu' not visible in vWii versions

This commit is contained in:
Christopher Roy Bratusek 2016-08-14 22:35:17 +02:00
parent cad3d0a647
commit de45e343a4
2 changed files with 13 additions and 2 deletions

View File

@ -83,8 +83,12 @@ endPrompt()
GuiButton hbf(btn.GetWidth(), btn.GetHeight());
hbf.SetAlignment(ALIGN_CENTRE, ALIGN_TOP);
hbf.SetPosition(0, 90);
#ifndef VWII
if(get_bootmii() != 0)
hbf.SetPosition(0, 140);
#else
hbf.SetPosition(0, 140);
#endif
hbf.SetLabel(&hbfTxt);
hbf.SetImage(&hbfImg);
hbf.SetImageOver(&hbfImgOver);
@ -94,8 +98,12 @@ endPrompt()
GuiButton systemmenu(btn.GetWidth(), btn.GetHeight());
systemmenu.SetAlignment(ALIGN_CENTRE, ALIGN_TOP);
systemmenu.SetPosition(0, 180);
#ifndef VWII
if(get_bootmii() != 0)
systemmenu.SetPosition(0, 205);
#else
systemmenu.SetPosition(0, 205);
#endif
systemmenu.SetLabel(&systemmenuTxt);
systemmenu.SetImage(&systemmenuImg);
systemmenu.SetImageOver(&systemmenuImgOver);
@ -121,6 +129,8 @@ endPrompt()
#ifndef VWII
if(get_bootmii() != 0)
promptWindow.Append(&bootmii);
#else
promptWindow.Append(&wiiu);
#endif
promptWindow.Append(&systemmenu);
promptWindow.Append(&shutdown);

View File

@ -6,8 +6,9 @@
- add IOS5 rev 65280 to list of stub IOS
- fix Settings Editor GUI path for SD Gecko in GameCube
Memory Card Slot A
- minor change in Makefile target
- other minor changes
- fix 'Exit to Wii U menu' not visible in vWii versions
- various Makefile improvements
- other minor or internal changes
//rev44:
- built against libruntimeiospatch 1.5.1