diff options
| author | Tom Ross <midgey@rockbox.org> | 2007-01-27 20:42:04 +0000 |
|---|---|---|
| committer | Tom Ross <midgey@rockbox.org> | 2007-01-27 20:42:04 +0000 |
| commit | 541c2f0327df484f7e633187c672016b1c24109b (patch) | |
| tree | d1194b4a7f2c8c42247037c047653120b413594a /apps/plugins | |
| parent | df8446a72b67bd31d6196bfeef8a2132cede8ea2 (diff) | |
| download | rockbox-541c2f0327df484f7e633187c672016b1c24109b.zip rockbox-541c2f0327df484f7e633187c672016b1c24109b.tar.gz rockbox-541c2f0327df484f7e633187c672016b1c24109b.tar.bz2 rockbox-541c2f0327df484f7e633187c672016b1c24109b.tar.xz | |
Fix Blackjack not looking correct when a backdrop is in use.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12130 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/blackjack.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/plugins/blackjack.c b/apps/plugins/blackjack.c index 775fc8c..0f81d11 100644 --- a/apps/plugins/blackjack.c +++ b/apps/plugins/blackjack.c @@ -5,9 +5,9 @@ * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ * \/ \/ \/ \/ \/ - * $Id: blackjack.c,v 1.6 2006/11/21 20:528:13 midgey34 Exp $ + * $Id: $ * - * Copyright (C) 2006 Tom Ross (midgey34@gmail.com) + * Copyright (C) 2006 Tom Ross * * All files in this archive are subject to the GNU General Public License. * See the file COPYING in the source tree root for full license agreement. @@ -1399,6 +1399,10 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) { (void)parameter; rb = api; + +#if LCD_DEPTH > 1 + rb->lcd_set_backdrop(NULL); +#endif /* load high scores */ blackjack_loadscores(&bj); |