summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmaury Pouly <amaury.pouly@gmail.com>2012-01-15 01:37:37 +0100
committerAmaury Pouly <amaury.pouly@gmail.com>2012-01-15 02:29:30 +0100
commit8cadb587e88797e7ff94a57464bac3a0bab3523a (patch)
tree7d56c61314a44ef9fd718fb00b3a7078415918b7
parentcd99b0dbf98bc89c762387d6f4e2da35e181d24f (diff)
downloadrockbox-8cadb587e88797e7ff94a57464bac3a0bab3523a.tar.gz
rockbox-8cadb587e88797e7ff94a57464bac3a0bab3523a.zip
fuzeplus: fix lcd-target.h (LCD_FRAMEBUF_ADDR must point to lcd_framebuffer and not FRAME)
Change-Id: Ia1f16f9b8e3041517b60336c06aedd40dfd2be12
-rw-r--r--firmware/target/arm/imx233/sansa-fuzeplus/lcd-target.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/arm/imx233/sansa-fuzeplus/lcd-target.h b/firmware/target/arm/imx233/sansa-fuzeplus/lcd-target.h
index fe65b916a3..89959244a4 100644
--- a/firmware/target/arm/imx233/sansa-fuzeplus/lcd-target.h
+++ b/firmware/target/arm/imx233/sansa-fuzeplus/lcd-target.h
@@ -21,7 +21,7 @@
21#ifndef LCD_TARGET_H 21#ifndef LCD_TARGET_H
22#define LCD_TARGET_H 22#define LCD_TARGET_H
23 23
24#define LCD_FRAMEBUF_ADDR(col, row) ((fb_data *)FRAME + (row)*LCD_WIDTH + (col)) 24#define LCD_FRAMEBUF_ADDR(col, row) ((fb_data *)lcd_framebuffer + (row)*LCD_WIDTH + (col))
25 25
26/* Not really optimized, but are unusual */ 26/* Not really optimized, but are unusual */
27#define LCD_OPTIMIZED_UPDATE 27#define LCD_OPTIMIZED_UPDATE