mirror of
https://github.com/dborth/fceugx.git
synced 2025-01-09 07:09:26 +01:00
add IOS display for diagnostics
This commit is contained in:
parent
3a420dc673
commit
6a484938f4
@ -787,7 +787,7 @@ static void WindowCredits(void * ptr)
|
|||||||
creditsBoxImg.SetAlignment(ALIGN_CENTRE, ALIGN_MIDDLE);
|
creditsBoxImg.SetAlignment(ALIGN_CENTRE, ALIGN_MIDDLE);
|
||||||
creditsWindowBox.Append(&creditsBoxImg);
|
creditsWindowBox.Append(&creditsBoxImg);
|
||||||
|
|
||||||
int numEntries = 24;
|
int numEntries = 25;
|
||||||
GuiText * txt[numEntries];
|
GuiText * txt[numEntries];
|
||||||
|
|
||||||
txt[i] = new GuiText("Credits", 30, (GXColor){0, 0, 0, 255});
|
txt[i] = new GuiText("Credits", 30, (GXColor){0, 0, 0, 255});
|
||||||
@ -850,6 +850,16 @@ static void WindowCredits(void * ptr)
|
|||||||
txt[i] = new GuiText("GNU General Public License (GPL) Version 2.");
|
txt[i] = new GuiText("GNU General Public License (GPL) Version 2.");
|
||||||
txt[i]->SetPosition(0,y); i++; y+=20;
|
txt[i]->SetPosition(0,y); i++; y+=20;
|
||||||
|
|
||||||
|
char iosVersion[20];
|
||||||
|
|
||||||
|
#ifdef HW_RVL
|
||||||
|
sprintf(iosVersion, "IOS: %d", IOS_GetVersion());
|
||||||
|
#endif
|
||||||
|
|
||||||
|
txt[i] = new GuiText(iosVersion, 18, (GXColor){0, 0, 0, 255});
|
||||||
|
txt[i]->SetAlignment(ALIGN_LEFT, ALIGN_BOTTOM);
|
||||||
|
txt[i]->SetPosition(20,-20);
|
||||||
|
|
||||||
for(i=0; i < numEntries; i++)
|
for(i=0; i < numEntries; i++)
|
||||||
creditsWindowBox.Append(txt[i]);
|
creditsWindowBox.Append(txt[i]);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user