diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2005-07-19 09:24:29 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2005-07-19 09:24:29 +0000 |
| commit | 82ea7c3bacd0b5308e7f0b1d8f35a4e3e13e54f7 (patch) | |
| tree | c26486e3dc90d2e49e9407c32c09aa6c5e2b34ec /apps/screens.c | |
| parent | 144fc69a9f774aa3c0542ee075055bce87f28b14 (diff) | |
| download | rockbox-82ea7c3bacd0b5308e7f0b1d8f35a4e3e13e54f7.zip rockbox-82ea7c3bacd0b5308e7f0b1d8f35a4e3e13e54f7.tar.gz rockbox-82ea7c3bacd0b5308e7f0b1d8f35a4e3e13e54f7.tar.bz2 rockbox-82ea7c3bacd0b5308e7f0b1d8f35a4e3e13e54f7.tar.xz | |
Renamed MAX_LEVEL to LCD_MAX_LEVEL to match the naming scheme. Preparations for colour LCD support.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7194 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/screens.c')
| -rw-r--r-- | apps/screens.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/screens.c b/apps/screens.c index f761919..a51d83f 100644 --- a/apps/screens.c +++ b/apps/screens.c @@ -855,7 +855,7 @@ void splash(int ticks, /* how long the splash is displayed */ int xx = (LCD_WIDTH-maxw)/2 - 2; /* The new graphics routines handle clipping, so no need to check */ #if LCD_DEPTH > 1 - lcd_set_background(MAX_LEVEL-1); + lcd_set_background(LCD_MAX_LEVEL-1); #endif lcd_set_drawmode(DRMODE_SOLID|DRMODE_INVERSEVID); lcd_fillrect(xx, y-2, maxw+4, LCD_HEIGHT-y*2+4); @@ -903,7 +903,7 @@ void splash(int ticks, /* how long the splash is displayed */ next = strtok_r(NULL, " ", &store); } #if defined(HAVE_LCD_BITMAP) && (LCD_DEPTH > 1) - lcd_set_background(MAX_LEVEL); + lcd_set_background(LCD_MAX_LEVEL); #endif lcd_update(); |