improved timeauto sync

This commit is contained in:
Klemek
2021-10-25 14:41:43 +02:00
parent 74bec5e4c2
commit 7d75ef2834
4 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ void WatchyTetris::drawWatchFace()
void WatchyTetris::drawNumber(int x, int y, int value, int max_digits)
{
for (int8_t i = 0; i <= max_digits; i++)
for (int8_t i = 0; i < max_digits; i++)
{
display.drawBitmap(x - i * 10, y, tetris_small_nums[value % 10], 8, 8, GxEPD_BLACK);
value /= 10;