summaryrefslogtreecommitdiff
path: root/keyboards
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2022-09-25 22:04:52 +1000
committerGitHub <noreply@github.com>2022-09-25 22:04:52 +1000
commit1bdf4cdc22ae57d111efb2f7d71e405e5c7b3f11 (patch)
treec71a077aef8a673579a2afad3f0fab3534afe1df /keyboards
parent056d6aee27a452df76b7abcd15ef22172d619033 (diff)
Fix `tzarc/djinn` screen geometry. (#18478)
Diffstat (limited to 'keyboards')
-rw-r--r--keyboards/tzarc/djinn/djinn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/tzarc/djinn/djinn.c b/keyboards/tzarc/djinn/djinn.c
index 5e5fe44c67..e6529e555d 100644
--- a/keyboards/tzarc/djinn/djinn.c
+++ b/keyboards/tzarc/djinn/djinn.c
@@ -70,7 +70,7 @@ void keyboard_post_init_kb(void) {
wait_ms(150);
// Initialise the LCD
- lcd = qp_ili9341_make_spi_device(320, 240, LCD_CS_PIN, LCD_DC_PIN, LCD_RST_PIN, 4, 0);
+ lcd = qp_ili9341_make_spi_device(240, 320, LCD_CS_PIN, LCD_DC_PIN, LCD_RST_PIN, 4, 0);
qp_init(lcd, QP_ROTATION_0);
// Turn on the LCD and clear the display
@@ -230,4 +230,4 @@ void housekeeping_task_kb(void) {
if (last_input_activity_elapsed() > 250) {
matrix_wait_for_interrupt();
}
-} \ No newline at end of file
+}