summaryrefslogtreecommitdiff
path: root/apps/plugins/lib/highscore.h
diff options
context:
space:
mode:
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