summary refs log tree commit diff stats
path: root/firmware/src/ui
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/src/ui')
-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 }
 {
 }