From 38d99a53dd96c8892cd7ce30ebee000e2f5abe94 Mon Sep 17 00:00:00 2001 From: Bodmer Date: Sun, 4 Nov 2018 20:41:10 +0000 Subject: [PATCH] Issue #232 --- TFT_Drivers/ST7789_Rotation.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TFT_Drivers/ST7789_Rotation.h b/TFT_Drivers/ST7789_Rotation.h index 34ba394..94be726 100644 --- a/TFT_Drivers/ST7789_Rotation.h +++ b/TFT_Drivers/ST7789_Rotation.h @@ -22,13 +22,13 @@ _width = _init_width; _height = _init_height; colstart = 0; - rowstart = 80; + rowstart = 0; break; case 3: // Inverted landscape writedata(TFT_MAD_MV | TFT_MAD_MY | TFT_MAD_RGB); _width = _init_height; _height = _init_width; - colstart = 80; + colstart = 0; rowstart = 0; break; }