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