diff options
| author | Alexander Levin <al.le@rockbox.org> | 2009-06-24 21:19:16 +0000 |
|---|---|---|
| committer | Alexander Levin <al.le@rockbox.org> | 2009-06-24 21:19:16 +0000 |
| commit | 7a8e1e8fc00b4255c28696962dc240a70bc6e082 (patch) | |
| tree | 13ad4bb4f0cece03befcd6d0e3b99bfb506b6dea /apps/plugins/solitaire.c | |
| parent | 1f64522a43dbab91fb8273ed5a9ffbcdc907438f (diff) | |
| download | rockbox-7a8e1e8fc00b4255c28696962dc240a70bc6e082.zip rockbox-7a8e1e8fc00b4255c28696962dc240a70bc6e082.tar.gz rockbox-7a8e1e8fc00b4255c28696962dc240a70bc6e082.tar.bz2 rockbox-7a8e1e8fc00b4255c28696962dc240a70bc6e082.tar.xz | |
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
Diffstat (limited to 'apps/plugins/solitaire.c')
| -rw-r--r-- | apps/plugins/solitaire.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/plugins/solitaire.c b/apps/plugins/solitaire.c index 69216ce..a8beb58 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(); } |