From a4407c56a47f8336f2a7778c3c4ae7b455481f47 Mon Sep 17 00:00:00 2001 From: Arne Date: Sun, 4 May 2025 13:49:16 +0200 Subject: fix UI constructor --- firmware/src/ui/ui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'firmware/src') 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 } { } -- cgit 1.4.1