mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-19 17:59:16 +01:00
- Moved the HDD information where the battery meter was before.
- now clock and HDD info can be shown at the same time (HDD info still can be edited/turned off in the themes.txt)
This commit is contained in:
parent
bbce513bd1
commit
15f5905b1a
@ -269,10 +269,10 @@ void CFG_Default(int widescreen) // -1 = non forced Mode
|
||||
THEME.showBattery = 1;
|
||||
THEME.showRegion = 1;
|
||||
THEME.hddInfo_x = 0;
|
||||
THEME.hddInfo_y = 330;
|
||||
THEME.hddInfo_y = 410;
|
||||
THEME.hddInfoAlign = CFG_ALIGN_CENTRE;
|
||||
THEME.gameCnt_x = 0;
|
||||
THEME.gameCnt_y = 350;
|
||||
THEME.gameCnt_y = 430;
|
||||
THEME.gameCntAlign = CFG_ALIGN_CENTRE;
|
||||
THEME.battery1_x = 245;
|
||||
THEME.battery1_y = 400;
|
||||
|
@ -2829,11 +2829,11 @@ static int MenuDiscList()
|
||||
HaltGui();
|
||||
GuiWindow w(screenwidth, screenheight);
|
||||
|
||||
if((Settings.hddinfo == HDDInfo && THEME.showHDD == -1) || THEME.showHDD == 1) //force show hdd info
|
||||
if(THEME.showHDD == -1 || THEME.showHDD == 1) //force show hdd info
|
||||
{
|
||||
w.Append(&usedSpaceTxt);
|
||||
}
|
||||
if((Settings.hddinfo == HDDInfo && THEME.showGameCnt == -1) || THEME.showGameCnt == 1) //force show game cnt info
|
||||
if(THEME.showGameCnt == -1 || THEME.showGameCnt == 1) //force show game cnt info
|
||||
{
|
||||
w.Append(&gamecntTxt);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user