diff options
author | Jens Arnold <amiconn@rockbox.org> | 2007-04-17 00:08:58 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2007-04-17 00:08:58 +0000 |
commit | ded87cfcf50cc20c77fb1da994e8a752994cfde1 (patch) | |
tree | 3854562a42a4387946a98a10229d443232e0a9e1 /apps | |
parent | 539c513fe60f9277105edb1916685594338ac671 (diff) |
Fix yellow...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13188 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/gui/icon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/icon.c b/apps/gui/icon.c index cc92b96c27..eb642313af 100644 --- a/apps/gui/icon.c +++ b/apps/gui/icon.c @@ -160,7 +160,7 @@ void screen_put_iconxy(struct screen * display, if (xpos == 0) xpos++; -#if (LCD_DEPTH == 16) || (LCD_REMOTE_DEPTH == 16) +#if (LCD_DEPTH == 16) || defined(LCD_REMOTE_DEPTH) && (LCD_REMOTE_DEPTH == 16) if (display->depth == 16) draw_func = display->transparent_bitmap_part; else |