From fde880fb6f646fd4dfdc72204b6109fa056dd2ba Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Sun, 6 Apr 2025 22:48:34 -0400 Subject: [PATCH] chore: add default case for EI_EVENT handling --- src/lib/platform/EiScreen.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/platform/EiScreen.cpp b/src/lib/platform/EiScreen.cpp index ff52d3aa78..d6d0cdc50c 100644 --- a/src/lib/platform/EiScreen.cpp +++ b/src/lib/platform/EiScreen.cpp @@ -820,6 +820,8 @@ void EiScreen::handleSystemEvent(const Event &sysevent, void *) case EI_EVENT_SCROLL_STOP: case EI_EVENT_SCROLL_CANCEL: break; + default: + break; } ei_event_unref(event); }