diff options
| author | Arne <ge47com@tum.de> | 2025-05-04 13:49:16 +0200 |
|---|---|---|
| committer | Arne <ge47com@tum.de> | 2025-05-04 13:49:16 +0200 |
| commit | a4407c56a47f8336f2a7778c3c4ae7b455481f47 (patch) | |
| tree | 8c37aec2de7b5774fff918851065297f1fbdace2 /firmware/src/ui/ui.cpp | |
| parent | 32a24182ad8cd2fc3a9125cb8f70de3b9c22f9a4 (diff) | |
| download | tetris-console-a4407c56a47f8336f2a7778c3c4ae7b455481f47.tar.gz tetris-console-a4407c56a47f8336f2a7778c3c4ae7b455481f47.zip | |
fix UI constructor initial-setup
Diffstat (limited to 'firmware/src/ui/ui.cpp')
| -rw-r--r-- | firmware/src/ui/ui.cpp | 4 |
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 } { } |