summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/drivers/lcd-1bit-vert.c2
-rw-r--r--firmware/drivers/lcd-2bit-vi.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/firmware/drivers/lcd-1bit-vert.c b/firmware/drivers/lcd-1bit-vert.c
index e574d4c191..49c15c041e 100644
--- a/firmware/drivers/lcd-1bit-vert.c
+++ b/firmware/drivers/lcd-1bit-vert.c
@@ -83,7 +83,7 @@ static void *LCDFN(frameaddress_default)(int x, int y)
83{ 83{
84 /* the default expects a buffer the same size as the screen */ 84 /* the default expects a buffer the same size as the screen */
85 struct frame_buffer_t *fb = CURRENT_VP->buffer; 85 struct frame_buffer_t *fb = CURRENT_VP->buffer;
86#if LCD_STRIDEFORMAT == VERTICAL_STRIDE 86#if defined(MAIN_LCD) && LCD_STRIDEFORMAT == VERTICAL_STRIDE
87 size_t element = (x * LCDM(NATIVE_STRIDE)(fb->stride)) + y; 87 size_t element = (x * LCDM(NATIVE_STRIDE)(fb->stride)) + y;
88#else 88#else
89 size_t element = (y * LCDM(NATIVE_STRIDE)(fb->stride)) + x; 89 size_t element = (y * LCDM(NATIVE_STRIDE)(fb->stride)) + x;
diff --git a/firmware/drivers/lcd-2bit-vi.c b/firmware/drivers/lcd-2bit-vi.c
index 0bcf60767e..0580705a05 100644
--- a/firmware/drivers/lcd-2bit-vi.c
+++ b/firmware/drivers/lcd-2bit-vi.c
@@ -95,7 +95,7 @@ static void *LCDFN(frameaddress_default)(int x, int y)
95{ 95{
96 /* the default expects a buffer the same size as the screen */ 96 /* the default expects a buffer the same size as the screen */
97 struct frame_buffer_t *fb = CURRENT_VP->buffer; 97 struct frame_buffer_t *fb = CURRENT_VP->buffer;
98#if LCD_STRIDEFORMAT == VERTICAL_STRIDE 98#if defined(MAIN_LCD) && LCD_STRIDEFORMAT == VERTICAL_STRIDE
99 size_t element = (x * LCDM(NATIVE_STRIDE)(fb->stride)) + y; 99 size_t element = (x * LCDM(NATIVE_STRIDE)(fb->stride)) + y;
100#else 100#else
101 size_t element = (y * LCDM(NATIVE_STRIDE)(fb->stride)) + x; 101 size_t element = (y * LCDM(NATIVE_STRIDE)(fb->stride)) + x;