summaryrefslogtreecommitdiff
path: root/firmware/target/arm
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm')
-rw-r--r--firmware/target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/firmware/target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c b/firmware/target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
index 91b2eae986..9b066d61d0 100644
--- a/firmware/target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
+++ b/firmware/target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
@@ -11,10 +11,9 @@ static volatile bool lcd_on = true;
11volatile bool lcd_poweroff = false; 11volatile bool lcd_poweroff = false;
12static unsigned lcd_yuv_options = 0; 12static unsigned lcd_yuv_options = 0;
13/* 13/*
14** These are imported from lcd-16bit.c 14** This is imported from lcd-16bit.c
15*/ 15*/
16extern unsigned fg_pattern; 16extern struct viewport* current_vp;
17extern unsigned bg_pattern;
18 17
19/* Copies a rectangle from one framebuffer to another. Can be used in 18/* Copies a rectangle from one framebuffer to another. Can be used in
20 single transfer mode with width = num pixels, and height = 1 which 19 single transfer mode with width = num pixels, and height = 1 which
@@ -245,7 +244,7 @@ void lcd_bitmap_transparent_part(const fb_data *src, int src_x, int src_y,
245 [dstp]"r"(LCD_WIDTH - width), 244 [dstp]"r"(LCD_WIDTH - width),
246 [transcolor]"r"(TRANSPARENT_COLOR), 245 [transcolor]"r"(TRANSPARENT_COLOR),
247 [fgcolor]"r"(REPLACEWITHFG_COLOR), 246 [fgcolor]"r"(REPLACEWITHFG_COLOR),
248 [fgpat]"r"(fg_pattern) 247 [fgpat]"r"(current_vp->fg_pattern)
249 ); 248 );
250} 249}
251 250