summaryrefslogtreecommitdiff
path: root/apps/plugins/jewels.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/jewels.c')
-rw-r--r--apps/plugins/jewels.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/plugins/jewels.c b/apps/plugins/jewels.c
index c636619b43..fc20c674aa 100644
--- a/apps/plugins/jewels.c
+++ b/apps/plugins/jewels.c
@@ -629,8 +629,7 @@ static void jewels_drawboard(struct game_context* bj) {
629#endif 629#endif
630 630
631 /* print text */ 631 /* print text */
632 rb->snprintf(str, 10, "%s %d", title, bj->level); 632 rb->lcd_putsxyf(1, LCD_HEIGHT-10, "%s %d", title, bj->level);
633 rb->lcd_putsxy(1, LCD_HEIGHT-10, str);
634 633
635 if (bj->type == GAME_TYPE_NORMAL) { 634 if (bj->type == GAME_TYPE_NORMAL) {
636 rb->snprintf(str, 6, "%d", (bj->level-1)*LEVEL_PTS+bj->score); 635 rb->snprintf(str, 6, "%d", (bj->level-1)*LEVEL_PTS+bj->score);
@@ -671,8 +670,8 @@ static void jewels_drawboard(struct game_context* bj) {
671#endif 670#endif
672 671
673 /* print text */ 672 /* print text */
674 rb->snprintf(str, 10, "%s %d", title, bj->level); 673 rb->lcd_putsxyf(1, LCD_HEIGHT-(LCD_HEIGHT-(8*TILE_HEIGHT+YOFS))/2-3,"%s %d",
675 rb->lcd_putsxy(1, LCD_HEIGHT-(LCD_HEIGHT-(8*TILE_HEIGHT+YOFS))/2-3, str); 674 title, bj->level);
676 675
677 if (bj->type == GAME_TYPE_NORMAL) { 676 if (bj->type == GAME_TYPE_NORMAL) {
678 rb->snprintf(str, 6, "%d", (bj->level-1)*LEVEL_PTS+bj->score); 677 rb->snprintf(str, 6, "%d", (bj->level-1)*LEVEL_PTS+bj->score);