summaryrefslogtreecommitdiff
path: root/apps/plugins/lib/highscore.c
diff options
context:
space:
mode:
authorTeruaki Kawashima <teru@rockbox.org>2009-08-03 16:30:08 +0000
committerTeruaki Kawashima <teru@rockbox.org>2009-08-03 16:30:08 +0000
commit2357ec4178de417c69d1ce0001ceac747e0512a3 (patch)
treed8ab876b9f914ecbb79624c0c270af5a83d01661 /apps/plugins/lib/highscore.c
parent3228756324a3afa579ac0da8319cc24bb0147f15 (diff)
downloadrockbox-2357ec4178de417c69d1ce0001ceac747e0512a3.tar.gz
rockbox-2357ec4178de417c69d1ce0001ceac747e0512a3.zip
calendar: fix bug when add new event text longer than last entry.
blackjack: fix bug that bet becomes 10 when resume saved game. bubbles: save high level to sparate file. clix, spacerocks, jewels, bubbles: correct text of menu item. wormlet: clean up code: removed unused defines and functions. pluginlib display_text: insert sleep so that the screen doesn't quit immediately. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22143 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib/highscore.c')
-rw-r--r--apps/plugins/lib/highscore.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugins/lib/highscore.c b/apps/plugins/lib/highscore.c
index 280c0c7724..20e472f9dc 100644
--- a/apps/plugins/lib/highscore.c
+++ b/apps/plugins/lib/highscore.c
@@ -129,7 +129,6 @@ void highscore_show(int position, struct highscore *scores, int num_scores, bool
129 rb->lcd_set_background(LCD_BLACK); 129 rb->lcd_set_background(LCD_BLACK);
130 rb->lcd_set_foreground(LCD_WHITE); 130 rb->lcd_set_foreground(LCD_WHITE);
131#endif 131#endif
132 rb->button_clear_queue();
133 rb->lcd_clear_display(); 132 rb->lcd_clear_display();
134 133
135 rb->lcd_setfont(FONT_UI); 134 rb->lcd_setfont(FONT_UI);
@@ -174,6 +173,8 @@ void highscore_show(int position, struct highscore *scores, int num_scores, bool
174 } 173 }
175 } 174 }
176 rb->lcd_update(); 175 rb->lcd_update();
176 rb->sleep(HZ/2);
177 rb->button_clear_queue();
177 rb->button_get(true); 178 rb->button_get(true);
178 rb->lcd_setfont(FONT_SYSFIXED); 179 rb->lcd_setfont(FONT_SYSFIXED);
179} 180}