From 15f5905b1aaf764ab17b2dcb88d91532c92e22a2 Mon Sep 17 00:00:00 2001 From: mauricewoelk Date: Tue, 19 May 2009 10:29:58 +0000 Subject: [PATCH] - 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) --- source/cfg.c | 4 ++-- source/menu.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/source/cfg.c b/source/cfg.c index dd20e546..f545ff3d 100644 --- a/source/cfg.c +++ b/source/cfg.c @@ -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; diff --git a/source/menu.cpp b/source/menu.cpp index 753c49cb..b493d5dc 100644 --- a/source/menu.cpp +++ b/source/menu.cpp @@ -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); }