From ffef37a22d43fee55791cd1a3295e59f7130cbe6 Mon Sep 17 00:00:00 2001 From: Bodmer Date: Sun, 4 Nov 2018 20:46:39 +0000 Subject: [PATCH] Revert "Issue #232" This reverts commit 38d99a53dd96c8892cd7ce30ebee000e2f5abe94. --- 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 94be726..34ba394 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 = 0; + rowstart = 80; break; case 3: // Inverted landscape writedata(TFT_MAD_MV | TFT_MAD_MY | TFT_MAD_RGB); _width = _init_height; _height = _init_width; - colstart = 0; + colstart = 80; rowstart = 0; break; }