From 4d6374c9236b93e0bd457f99944164fc493d1120 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Fri, 16 Mar 2007 21:56:08 +0000 Subject: 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 --- apps/plugins/minesweeper.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/plugins/minesweeper.c') 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 ) if( no_mines ) break; tiles_left = count_tiles_left(); - rb->splash( HZ*2, true, "You found %d mines out of %d", + rb->splash( HZ*2, "You found %d mines out of %d", tiles_left, mine_num ); break; @@ -681,13 +681,13 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) switch( minesweeper() ) { case MINESWEEPER_WIN: - rb->splash( HZ, true, "You Win!" ); + rb->splash( HZ, "You Win!" ); rb->lcd_clear_display(); mine_show(); break; case MINESWEEPER_LOSE: - rb->splash( HZ, true, "You Lose!" ); + rb->splash( HZ, "You Lose!" ); rb->lcd_clear_display(); mine_show(); break; -- cgit v1.2.3