diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2008-04-29 01:09:39 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2008-04-29 01:09:39 +0000 |
commit | c741ecc68a5e0c709d9f93ed10866da9bd6f6465 (patch) | |
tree | e11c12f6106938a0e0ff2b5683a094b607ba4962 /firmware/target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c | |
parent | a6100fb5ee093ecc9b263c2c659c653d90eed585 (diff) | |
download | rockbox-c741ecc68a5e0c709d9f93ed10866da9bd6f6465.tar.gz rockbox-c741ecc68a5e0c709d9f93ed10866da9bd6f6465.zip |
yep.. I really cant spell
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17287 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c')
-rw-r--r-- | firmware/target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c b/firmware/target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c index a96f9c4f5f..14a9febe59 100644 --- a/firmware/target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c +++ b/firmware/target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c @@ -323,7 +323,7 @@ void lcd_update_rect(int x, int y, int width, int height) if (height <= 0) return; /* nothing left to do */ -#if CONFIG_ORIENTATION == SCREEN_PORTAIT +#if CONFIG_ORIENTATION == SCREEN_PORTRAIT dst = (fb_data *)FRAME + LCD_WIDTH*y + x; src = &lcd_framebuffer[y][x]; @@ -363,7 +363,7 @@ void lcd_update(void) { if (!display_on || direct_fb_access) return; -#if CONFIG_ORIENTATION == SCREEN_PORTAIT +#if CONFIG_ORIENTATION == SCREEN_PORTRAIT lcd_copy_buffer_rect((fb_data *)FRAME, &lcd_framebuffer[0][0], LCD_WIDTH*LCD_HEIGHT, 1); #else |