summaryrefslogtreecommitdiff
path: root/apps/plugins/minesweeper.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2007-03-16 21:56:08 +0000
committerJens Arnold <amiconn@rockbox.org>2007-03-16 21:56:08 +0000
commit4d6374c9236b93e0bd457f99944164fc493d1120 (patch)
treeff9630fcef66e63c61cc0a74e97f21220e668f75 /apps/plugins/minesweeper.c
parent2c643b9f3e22ee07f7949a5471f726758dc40841 (diff)
downloadrockbox-4d6374c9236b93e0bd457f99944164fc493d1120.tar.gz
rockbox-4d6374c9236b93e0bd457f99944164fc493d1120.zip
Get rid of the 'center' parameter for splashes. There were only 2 of almost 500 splashes which were not centered.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12807 a1c6a512-1295-4272-9138-f99709370657
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;