summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2003-11-20 01:33:41 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2003-11-20 01:33:41 +0000
commit43a1ac7267a02ea01d1965a0d9b6e4545773692d (patch)
treecab72a255fb7d6d9816efca806a596d472156fb2
parent04005b9602cae02d1896c9e08ae7856928dce9f4 (diff)
downloadrockbox-43a1ac7267a02ea01d1965a0d9b6e4545773692d.tar.gz
rockbox-43a1ac7267a02ea01d1965a0d9b6e4545773692d.zip
Minor cosmetic fix in the credit scroller
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4053 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/credits.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/credits.c b/apps/credits.c
index 11ea7ebc31..71d77a6feb 100644
--- a/apps/credits.c
+++ b/apps/credits.c
@@ -83,6 +83,7 @@ void roll_credits(void)
83 lcd_putsxy(0, i*height+y, line+i<numnames?credits[line+i]:""); 83 lcd_putsxy(0, i*height+y, line+i<numnames?credits[line+i]:"");
84 snprintf(buffer, sizeof(buffer), " [Credits] %2d/%2d ", 84 snprintf(buffer, sizeof(buffer), " [Credits] %2d/%2d ",
85 line+1, numnames); 85 line+1, numnames);
86 lcd_clearrect(0, 0, LCD_WIDTH, height);
86 lcd_putsxy(0, 0, buffer); 87 lcd_putsxy(0, 0, buffer);
87 lcd_update(); 88 lcd_update();
88 89