summary refs log tree commit diff stats
path: root/firmware/src
diff options
context:
space:
mode:
authorArne <ge47com@tum.de>2025-05-04 13:49:16 +0200
committerArne <ge47com@tum.de>2025-05-04 13:49:16 +0200
commita4407c56a47f8336f2a7778c3c4ae7b455481f47 (patch)
tree8c37aec2de7b5774fff918851065297f1fbdace2 /firmware/src
parent32a24182ad8cd2fc3a9125cb8f70de3b9c22f9a4 (diff)
downloadtetris-console-a4407c56a47f8336f2a7778c3c4ae7b455481f47.tar.gz
tetris-console-a4407c56a47f8336f2a7778c3c4ae7b455481f47.zip
fix UI constructor initial-setup
Diffstat (limited to 'firmware/src')
-rw-r--r--firmware/src/ui/ui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/src/ui/ui.cpp b/firmware/src/ui/ui.cpp
index af27b37..ce026e1 100644
--- a/firmware/src/ui/ui.cpp
+++ b/firmware/src/ui/ui.cpp
@@ -3,8 +3,8 @@
 
 namespace ui {
 
-UI::UI(int8_t tft_cs, int8_t tft_rst, int8_t tft_dc)
-    : tft { tft_cs, tft_rst, tft_dc }
+UI::UI(int8_t tft_cs, int8_t tft_dc, int8_t tft_rst)
+    : tft { tft_cs, tft_dc, tft_rst }
 {
 }