clock adjusted, clockfont edited (bearing of "1")
tabs edited... not perfect but ok.
@ -248,7 +248,7 @@ void CFG_Default(int widescreen) // -1 = non forced Mode
|
||||
THEME.info_g = 154;
|
||||
THEME.info_b = 192;
|
||||
THEME.clock_x = 0;
|
||||
THEME.clock_y = -120;
|
||||
THEME.clock_y = -128;
|
||||
THEME.clockAlign = CFG_ALIGN_CENTRE;
|
||||
THEME.sdcard_x = 160;
|
||||
THEME.sdcard_y = 390;
|
||||
|
Before Width: | Height: | Size: 9.3 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 5.6 KiB After Width: | Height: | Size: 4.1 KiB |
@ -2562,7 +2562,7 @@ static int MenuDiscList()
|
||||
gameBrowser.SetPosition(THEME.selection_x, THEME.selection_y);
|
||||
gameBrowser.SetAlignment(ALIGN_LEFT, ALIGN_CENTRE);
|
||||
|
||||
GuiText clockTime(theTime, 30, (GXColor){138, 138, 138, 255});
|
||||
GuiText clockTime(theTime, 40, (GXColor){138, 138, 138, 255});
|
||||
clockTime.SetAlignment(THEME.clockAlign, ALIGN_BOTTOM);
|
||||
clockTime.SetPosition(THEME.clock_x, THEME.clock_y);
|
||||
clockTime.SetFont(fontClock);
|
||||
@ -3453,7 +3453,7 @@ static int MenuSettings()
|
||||
GuiImage page2dImg(&page2d);
|
||||
GuiButton page2Btn(page2.GetWidth(), page2.GetHeight());
|
||||
page2Btn.SetAlignment(ALIGN_CENTRE, ALIGN_TOP);
|
||||
page2Btn.SetPosition(-202, 242);
|
||||
page2Btn.SetPosition(-202, 186);
|
||||
page2Btn.SetImage(&page2dImg);
|
||||
page2Btn.SetSoundOver(&btnSoundOver);
|
||||
page2Btn.SetSoundClick(&btnClick);
|
||||
@ -3532,9 +3532,9 @@ static int MenuSettings()
|
||||
w.Append(btnLogo);
|
||||
|
||||
mainWindow->Append(&w);
|
||||
mainWindow->Append(&optionBrowser2);
|
||||
mainWindow->Append(&page2Btn);
|
||||
mainWindow->Append(&page1Btn);
|
||||
mainWindow->Append(&optionBrowser2);
|
||||
|
||||
ResumeGui();
|
||||
}
|
||||
@ -3542,6 +3542,7 @@ static int MenuSettings()
|
||||
{
|
||||
mainWindow->Append(&page1Btn);
|
||||
mainWindow->Append(&page2Btn);
|
||||
mainWindow->Append(&optionBrowser2);
|
||||
|
||||
sprintf(options2.name[0], "Password");
|
||||
sprintf(options2.name[1], "Boot/Standard");
|
||||
@ -3715,9 +3716,9 @@ static int MenuSettings()
|
||||
char entered[20] = "";
|
||||
strncpy(entered, Settings.unlockCode, sizeof(entered));
|
||||
int result = OnScreenKeyboard(entered, 20);
|
||||
mainWindow->Append(&optionBrowser2);
|
||||
mainWindow->Append(&page1Btn);
|
||||
mainWindow->Append(&page2Btn);
|
||||
mainWindow->Append(&optionBrowser2);
|
||||
w.Append(&backBtn);
|
||||
w.Append(&lockBtn);
|
||||
if ( result == 1 )
|
||||
@ -3797,9 +3798,9 @@ static int MenuSettings()
|
||||
w.Remove(&lockBtn);
|
||||
char entered[20] = "";
|
||||
int result = OnScreenKeyboard(entered, 20);
|
||||
mainWindow->Append(&optionBrowser2);
|
||||
mainWindow->Append(&page1Btn);
|
||||
mainWindow->Append(&page2Btn);
|
||||
mainWindow->Append(&optionBrowser2);
|
||||
w.Append(&backBtn);
|
||||
w.Append(&lockBtn);
|
||||
if ( result == 1 )
|
||||
|