mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-24 10:09:21 +01:00
fix 'Exit to Wii U menu' not visible in vWii versions
This commit is contained in:
parent
cad3d0a647
commit
de45e343a4
@ -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);
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user