From 7a8e1e8fc00b4255c28696962dc240a70bc6e082 Mon Sep 17 00:00:00 2001 From: Alexander Levin Date: Wed, 24 Jun 2009 21:19:16 +0000 Subject: [PATCH] Clear the display before showing the splash (part of FS#10138 by Teruaki Kawashima) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21498 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/solitaire.c | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/plugins/solitaire.c b/apps/plugins/solitaire.c index 69216cecba..a8beb58719 100644 --- a/apps/plugins/solitaire.c +++ b/apps/plugins/solitaire.c @@ -1459,6 +1459,7 @@ int solitaire( int skipmenu ) /* if there aren't any, that means you won :) */ if( biggest_col_length == 0 && rem == NOT_A_CARD ) { + rb->lcd_update(); rb->splash( HZ, "You Won :)" ); return bouncing_cards(); }