diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2009-08-10 20:36:34 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2009-08-10 20:36:34 +0000 |
| commit | 553f95806fc16818b59b203e6a80111ac2f26d56 (patch) | |
| tree | 158e818157cbf041ca18f428e266482d9aaaf903 | |
| parent | 7dc1e220d20710f711e69174682119413eebfd79 (diff) | |
| download | rockbox-553f95806fc16818b59b203e6a80111ac2f26d56.zip rockbox-553f95806fc16818b59b203e6a80111ac2f26d56.tar.gz rockbox-553f95806fc16818b59b203e6a80111ac2f26d56.tar.bz2 rockbox-553f95806fc16818b59b203e6a80111ac2f26d56.tar.xz | |
Fix yellows (the reds on mono are caused by this, again, stupid typo).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22243 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/panic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/panic.c b/firmware/panic.c index 84bd30a..8d74fd9 100644 --- a/firmware/panic.c +++ b/firmware/panic.c @@ -61,7 +61,7 @@ void panicf( const char *fmt, ...) #elif defined(HAVE_LCD_BITMAP) int y = 1; -#ifdef LCD_DEPTH > 1 +#if LCD_DEPTH > 1 lcd_set_backdrop(NULL); lcd_set_foreground(LCD_BLACK); lcd_set_background(LCD_WHITE); |