summaryrefslogtreecommitdiff
path: root/apps/plugins/lib/highscore.h
diff options
context:
space:
mode:
authorKarl Kurbjun <kkurbjun@gmail.com>2009-08-03 01:07:58 +0000
committerKarl Kurbjun <kkurbjun@gmail.com>2009-08-03 01:07:58 +0000
commit50d3928901069d908238930b880b878f3d760dd4 (patch)
tree81babdb7ab853d60502910e04c16ae29f14a9e73 /apps/plugins/lib/highscore.h
parentbbc9aebae3ec6e900abdf257a0b377a0f5b45911 (diff)
downloadrockbox-50d3928901069d908238930b880b878f3d760dd4.tar.gz
rockbox-50d3928901069d908238930b880b878f3d760dd4.zip
Blackjack: Use standard menu and add playback menu, use pluginlib high scores.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22126 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib/highscore.h')
-rw-r--r--apps/plugins/lib/highscore.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/lib/highscore.h b/apps/plugins/lib/highscore.h
index 173e389b9b..18c14a7662 100644
--- a/apps/plugins/lib/highscore.h
+++ b/apps/plugins/lib/highscore.h
@@ -27,7 +27,7 @@ struct highscore
27{ 27{
28 char name[32]; 28 char name[32];
29 int score; 29 int score;
30 int level; 30 int level;
31}; 31};
32 32
33/* Saves the scores to a file 33/* Saves the scores to a file
@@ -91,6 +91,6 @@ bool highscore_would_update(int score, struct highscore *scores,
91 * - scores : the array of existing scores 91 * - scores : the array of existing scores
92 * - num_scores: number of elements in 'scores' 92 * - num_scores: number of elements in 'scores'
93 */ 93 */
94void highscore_show(int position, struct highscore *scores, int num_scores); 94void highscore_show(int position, struct highscore *scores, int num_scores, bool show_level);
95#endif 95#endif
96#endif 96#endif