aboutsummaryrefslogtreecommitdiffstats
path: root/src/displayapp/LittleVgl.cpp
diff options
context:
space:
mode:
authorRiku Isokoski <riksu9000@gmail.com>2023-02-23 23:33:09 +0200
committerRiku Isokoski <riksu9000@gmail.com>2023-02-23 23:43:24 +0200
commit0d494136c982c3e00026b247935266d557027bb0 (patch)
tree0d8efc57c37147f6f43824c2abef2b18071ed283 /src/displayapp/LittleVgl.cpp
parent05f404950afeef26393b3e385bdb6d77df423e86 (diff)
LittleVgl: Remove unused Cst816S reference
Diffstat (limited to 'src/displayapp/LittleVgl.cpp')
-rw-r--r--src/displayapp/LittleVgl.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/displayapp/LittleVgl.cpp b/src/displayapp/LittleVgl.cpp
index e3d564a3..cc1223fb 100644
--- a/src/displayapp/LittleVgl.cpp
+++ b/src/displayapp/LittleVgl.cpp
@@ -3,7 +3,6 @@
#include <FreeRTOS.h>
#include <task.h>
-#include "drivers/Cst816s.h"
#include "drivers/St7789.h"
using namespace Pinetime::Components;
@@ -35,7 +34,7 @@ bool touchpad_read(lv_indev_drv_t* indev_drv, lv_indev_data_t* data) {
return lvgl->GetTouchPadInfo(data);
}
-LittleVgl::LittleVgl(Pinetime::Drivers::St7789& lcd, Pinetime::Drivers::Cst816S& touchPanel) : lcd {lcd}, touchPanel {touchPanel} {
+LittleVgl::LittleVgl(Pinetime::Drivers::St7789& lcd) : lcd {lcd} {
}
void LittleVgl::Init() {