summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2007-03-26 08:52:36 +0000
committerJens Arnold <amiconn@rockbox.org>2007-03-26 08:52:36 +0000
commit1764583f99c6d64de5b748df10b37a3ed9268a1f (patch)
tree655ae4800e0cbef3a2f43b14a313e63f7ce81627
parent51f4d3f2127785b577005a07384f33299642b04b (diff)
downloadrockbox-1764583f99c6d64de5b748df10b37a3ed9268a1f.tar.gz
rockbox-1764583f99c6d64de5b748df10b37a3ed9268a1f.zip
Rockblox: Repair initial display on targets with no highscore list.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12918 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/rockblox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/rockblox.c b/apps/plugins/rockblox.c
index dda8987c36..d5bf701b6f 100644
--- a/apps/plugins/rockblox.c
+++ b/apps/plugins/rockblox.c
@@ -544,8 +544,8 @@ static void init_rockblox (void)
544 pgfx_fillrect (15, 7, 2, 7); 544 pgfx_fillrect (15, 7, 2, 7);
545 pgfx_update(); 545 pgfx_update();
546#endif 546#endif
547#ifdef HIGH_SCORE_Y
548 show_details (); 547 show_details ();
548#ifdef HIGH_SCORE_Y
549 for (i = MAX_HIGH_SCORES-1; i>=0; i--) 549 for (i = MAX_HIGH_SCORES-1; i>=0; i--)
550 { 550 {
551 rb->snprintf (str, sizeof (str), "%06d L%1d", Highest[i].score, Highest[i].level); 551 rb->snprintf (str, sizeof (str), "%06d L%1d", Highest[i].score, Highest[i].level);