Skip to content

Commit

Permalink
add IOS display for diagnostics
Browse files Browse the repository at this point in the history
  • Loading branch information
dborth committed Mar 22, 2010
1 parent 3a420dc commit 6a48493
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion source/menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ static void WindowCredits(void * ptr)
creditsBoxImg.SetAlignment(ALIGN_CENTRE, ALIGN_MIDDLE);
creditsWindowBox.Append(&creditsBoxImg);

int numEntries = 24;
int numEntries = 25;
GuiText * txt[numEntries];

txt[i] = new GuiText("Credits", 30, (GXColor){0, 0, 0, 255});
Expand Down Expand Up @@ -850,6 +850,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]);

Expand Down

0 comments on commit 6a48493

Please sign in to comment.