diff options
author | Dave Chapman <dave@dchapman.com> | 2008-11-17 20:08:09 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2008-11-17 20:08:09 +0000 |
commit | de89a00cca2b50a4532e8fffdca38fd0816a6a03 (patch) | |
tree | 927f2f4c980cb87698985a25784d7c0c3dcb9b11 | |
parent | b36f6db0d60680939e12cc8f8e00b779798e89fc (diff) |
Correct the xoffset used when display_flipped is false - fixes the display in the main Rockbox build.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19128 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | firmware/target/arm/as3525/sansa-fuze/lcd-fuze.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/arm/as3525/sansa-fuze/lcd-fuze.c b/firmware/target/arm/as3525/sansa-fuze/lcd-fuze.c index dd6d4552e0..4e41a5b5b2 100644 --- a/firmware/target/arm/as3525/sansa-fuze/lcd-fuze.c +++ b/firmware/target/arm/as3525/sansa-fuze/lcd-fuze.c @@ -131,7 +131,7 @@ static void flip_lcd(bool yesno) void lcd_set_flip(bool yesno) { display_flipped = yesno; - xoffset = yesno ? 20 : 0; /* A guess */ + xoffset = yesno ? 0 : 20; /* TODO: Implement flipped mode */ if (display_on) flip_lcd(yesno); |