summaryrefslogtreecommitdiff
path: root/firmware/drivers/lcd-2bit-vert.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/lcd-2bit-vert.c')
-rw-r--r--firmware/drivers/lcd-2bit-vert.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/lcd-2bit-vert.c b/firmware/drivers/lcd-2bit-vert.c
index 4ce9960419..b206a2d816 100644
--- a/firmware/drivers/lcd-2bit-vert.c
+++ b/firmware/drivers/lcd-2bit-vert.c
@@ -83,7 +83,7 @@ static void *lcd_frameaddress_default(int x, int y)
83 /* the default expects a buffer the same size as the screen */ 83 /* the default expects a buffer the same size as the screen */
84 struct frame_buffer_t *fb = lcd_current_viewport->buffer; 84 struct frame_buffer_t *fb = lcd_current_viewport->buffer;
85 85
86#if defined(LCD_STRIDEFORMAT) && LCD_STRIDEFORMAT == VERTICAL_STRIDE 86#if LCD_STRIDEFORMAT == VERTICAL_STRIDE
87 size_t element = (x * LCD_NATIVE_STRIDE(fb->stride)) + y; 87 size_t element = (x * LCD_NATIVE_STRIDE(fb->stride)) + y;
88#else 88#else
89 size_t element = (y * LCD_NATIVE_STRIDE(fb->stride)) + x; 89 size_t element = (y * LCD_NATIVE_STRIDE(fb->stride)) + x;