- 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:
mauricewoelk 2009-05-19 10:29:58 +00:00
parent bbce513bd1
commit 15f5905b1a
2 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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);
}