summaryrefslogtreecommitdiff
path: root/firmware/drivers/lcd-16bit-vert.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/lcd-16bit-vert.c')
-rw-r--r--firmware/drivers/lcd-16bit-vert.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/drivers/lcd-16bit-vert.c b/firmware/drivers/lcd-16bit-vert.c
index 396e6f88d8..887505766c 100644
--- a/firmware/drivers/lcd-16bit-vert.c
+++ b/firmware/drivers/lcd-16bit-vert.c
@@ -69,7 +69,7 @@ static struct viewport default_vp =
69 69
70/* The Gigabeat target build requires access to the current fg_pattern 70/* The Gigabeat target build requires access to the current fg_pattern
71 in lcd-meg-fx.c */ 71 in lcd-meg-fx.c */
72#if (!defined(TOSHIBA_GIGABEAT_F)&& !defined(TOSHIBA_GIGABEAT_S)) || defined(SIMULATOR) 72#if defined(SIMULATOR)
73static struct viewport* current_vp IDATA_ATTR = &default_vp; 73static struct viewport* current_vp IDATA_ATTR = &default_vp;
74#else 74#else
75struct viewport* current_vp IDATA_ATTR = &default_vp; 75struct viewport* current_vp IDATA_ATTR = &default_vp;
@@ -853,7 +853,7 @@ void ICODE_ATTR lcd_bitmap_part(const fb_data *src, int src_x, int src_y,
853/* Draw a full native bitmap */ 853/* Draw a full native bitmap */
854void lcd_bitmap(const fb_data *src, int x, int y, int width, int height) 854void lcd_bitmap(const fb_data *src, int x, int y, int width, int height)
855{ 855{
856 lcd_bitmap_part(src, 0, 0, STRIDE(width, height), x, y, width, height); 856 lcd_bitmap_part(src, 0, 0, STRIDE(SCREEN_MAIN, width, height), x, y, width, height);
857} 857}
858 858
859#if !defined(TOSHIBA_GIGABEAT_F) && !defined(TOSHIBA_GIGABEAT_S) \ 859#if !defined(TOSHIBA_GIGABEAT_F) && !defined(TOSHIBA_GIGABEAT_S) \
@@ -914,7 +914,7 @@ void lcd_bitmap_transparent(const fb_data *src, int x, int y,
914 int width, int height) 914 int width, int height)
915{ 915{
916 lcd_bitmap_transparent_part(src, 0, 0, 916 lcd_bitmap_transparent_part(src, 0, 0,
917 STRIDE(width, height), x, y, width, height); 917 STRIDE(SCREEN_MAIN, width, height), x, y, width, height);
918} 918}
919 919
920#include "lcd-bitmap-common.c" 920#include "lcd-bitmap-common.c"