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/solitaire.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/plugins/solitaire.c') diff --git a/apps/plugins/solitaire.c b/apps/plugins/solitaire.c index 2260599bc3..da01f0f608 100644 --- a/apps/plugins/solitaire.c +++ b/apps/plugins/solitaire.c @@ -1159,7 +1159,7 @@ int solitaire( void ) /* if there aren't any, that means you won :) */ if( biggest_col_length == 0 && rem == NOT_A_CARD ) { - rb->splash( HZ, true, "You Won :)" ); + rb->splash( HZ, "You Won :)" ); return bouncing_cards(); } @@ -1588,7 +1588,7 @@ enum plugin_status plugin_start( struct plugin_api* api, void* parameter ) (void)parameter; rb = api; - rb->splash( HZ, true, "Welcome to Solitaire!" ); + rb->splash( HZ, "Welcome to Solitaire!" ); configfile_init(rb); configfile_load(CONFIG_FILENAME, config, -- cgit v1.2.3