From e35c9ae2e53e47cb459819d0b3e4cf5e299f88c8 Mon Sep 17 00:00:00 2001 From: Jack Massey Date: Thu, 28 Feb 2019 22:22:43 +1000 Subject: [PATCH] Fix portrait mode on JAYCAR display This was due to a simple typo when rebasing. --- st7735.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/st7735.c b/st7735.c index 3c19e7c..6dfc37f 100644 --- a/st7735.c +++ b/st7735.c @@ -188,7 +188,7 @@ void st7735_set_orientation(enum ST7735_ORIENTATION orientation) { } if(st7735_type == ST7735_RED144_JAYCAR) { - st7735_column_start = 32; + st7735_column_start = 0; st7735_row_start = 32; } break;