From 3b9a37e0756c8dad25e3e8067c3d2d6e4d22bb0f Mon Sep 17 00:00:00 2001 From: pablohc Date: Sat, 31 Jan 2026 01:55:45 +0100 Subject: [PATCH] fix: remove unused variables in MyLibraryActivity::loop() Fixes cppcheck warnings: - [low:style] Variable 'itemCount' is assigned a value that is never used - [low:style] Variable 'pageItems' is assigned a value that is never used --- src/activities/home/MyLibraryActivity.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/activities/home/MyLibraryActivity.cpp b/src/activities/home/MyLibraryActivity.cpp index 06823f52..b4ff5408 100644 --- a/src/activities/home/MyLibraryActivity.cpp +++ b/src/activities/home/MyLibraryActivity.cpp @@ -228,9 +228,6 @@ void MyLibraryActivity::onExit() { } void MyLibraryActivity::loop() { - const int itemCount = getCurrentItemCount(); - const int pageItems = getPageItems(); - // Get current time for all timing operations unsigned long currentTime = millis();