diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2007-03-26 08:52:36 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2007-03-26 08:52:36 +0000 |
| commit | 1764583f99c6d64de5b748df10b37a3ed9268a1f (patch) | |
| tree | 655ae4800e0cbef3a2f43b14a313e63f7ce81627 /apps/plugins | |
| parent | 51f4d3f2127785b577005a07384f33299642b04b (diff) | |
| download | rockbox-1764583f99c6d64de5b748df10b37a3ed9268a1f.zip rockbox-1764583f99c6d64de5b748df10b37a3ed9268a1f.tar.gz rockbox-1764583f99c6d64de5b748df10b37a3ed9268a1f.tar.bz2 rockbox-1764583f99c6d64de5b748df10b37a3ed9268a1f.tar.xz | |
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
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/rockblox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/rockblox.c b/apps/plugins/rockblox.c index dda8987..d5bf701 100644 --- a/apps/plugins/rockblox.c +++ b/apps/plugins/rockblox.c @@ -544,8 +544,8 @@ static void init_rockblox (void) pgfx_fillrect (15, 7, 2, 7); pgfx_update(); #endif -#ifdef HIGH_SCORE_Y show_details (); +#ifdef HIGH_SCORE_Y for (i = MAX_HIGH_SCORES-1; i>=0; i--) { rb->snprintf (str, sizeof (str), "%06d L%1d", Highest[i].score, Highest[i].level); |