From 89dfdb35c3b98337adb8feedb2c34bd45dedb358 Mon Sep 17 00:00:00 2001 From: Ulrich Meine Date: Mon, 6 Apr 2026 01:02:54 +0200 Subject: [PATCH] Delete obsolete comments in OBPcharts.cpp --- lib/obp60task/OBPcharts.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/obp60task/OBPcharts.cpp b/lib/obp60task/OBPcharts.cpp index b29e52f..3e55dcf 100644 --- a/lib/obp60task/OBPcharts.cpp +++ b/lib/obp60task/OBPcharts.cpp @@ -476,7 +476,6 @@ void Chart::drawChrtTimeAxis(const char chrtDir, const int8_t chrtSz, const int8 intv = 60; // print axis label each 60 pixels = seconds axSlots = timAxis / intv; // number of axis labels; value will be truncated to full number -// i = axSlots * chrtIntv * -1; // current minute label if (chrtDir == HORIZONTAL) { getdisplay().fillRect(0, cRoot.y, dWidth, 2, fgColor); @@ -509,7 +508,6 @@ void Chart::drawChrtTimeAxis(const char chrtDir, const int8_t chrtSz, const int8 } else if (chrtSz == HALF_SIZE_RIGHT) { // half size chart; right side drawTextCenter(dWidth / 2, cRoot.y + j, sTime); // time value; print mid screen } -// i += chrtIntv; i -= chrtIntv; } }