summaryrefslogtreecommitdiff
path: root/apps/plugins/minesweeper.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/minesweeper.c')
-rw-r--r--apps/plugins/minesweeper.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/minesweeper.c b/apps/plugins/minesweeper.c
index 2500fed8ce..26565f335f 100644
--- a/apps/plugins/minesweeper.c
+++ b/apps/plugins/minesweeper.c
@@ -650,7 +650,7 @@ enum minesweeper_status minesweeper( void )
650 if( no_mines ) 650 if( no_mines )
651 break; 651 break;
652 tiles_left = count_tiles_left(); 652 tiles_left = count_tiles_left();
653 rb->splash( HZ*2, true, "You found %d mines out of %d", 653 rb->splash( HZ*2, "You found %d mines out of %d",
654 tiles_left, mine_num ); 654 tiles_left, mine_num );
655 break; 655 break;
656 656
@@ -681,13 +681,13 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
681 switch( minesweeper() ) 681 switch( minesweeper() )
682 { 682 {
683 case MINESWEEPER_WIN: 683 case MINESWEEPER_WIN:
684 rb->splash( HZ, true, "You Win!" ); 684 rb->splash( HZ, "You Win!" );
685 rb->lcd_clear_display(); 685 rb->lcd_clear_display();
686 mine_show(); 686 mine_show();
687 break; 687 break;
688 688
689 case MINESWEEPER_LOSE: 689 case MINESWEEPER_LOSE:
690 rb->splash( HZ, true, "You Lose!" ); 690 rb->splash( HZ, "You Lose!" );
691 rb->lcd_clear_display(); 691 rb->lcd_clear_display();
692 mine_show(); 692 mine_show();
693 break; 693 break;