mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-24 03:29:22 +01:00
add IOS display for diagnostics
This commit is contained in:
parent
ed035ccad3
commit
2445c18fc5
@ -782,7 +782,7 @@ static void WindowCredits(void * ptr)
|
||||
creditsBoxImg.SetAlignment(ALIGN_CENTRE, ALIGN_MIDDLE);
|
||||
creditsWindowBox.Append(&creditsBoxImg);
|
||||
|
||||
int numEntries = 23;
|
||||
int numEntries = 24;
|
||||
GuiText * txt[numEntries];
|
||||
|
||||
txt[i] = new GuiText("Credits", 30, (GXColor){0, 0, 0, 255});
|
||||
@ -843,6 +843,16 @@ static void WindowCredits(void * ptr)
|
||||
txt[i] = new GuiText("GNU General Public License (GPL) Version 2.");
|
||||
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++)
|
||||
creditsWindowBox.Append(txt[i]);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user