Fixed seconds not defined in horizon watchface

This commit is contained in:
locker98 2024-05-09 15:30:20 -04:00
parent 8e3238abf2
commit 62f4d403ba

View File

@ -189,7 +189,7 @@ void WatchFaceHorizon::Refresh() {
// Update hour bar on bottom // Update hour bar on bottom
for (int i = 0; i < 60; i++) { for (int i = 0; i < 60; i++) {
if (i <= seconds) { if (i <= second) {
lv_obj_set_hidden(hourLines[i], false); lv_obj_set_hidden(hourLines[i], false);
} else { } else {
lv_obj_set_hidden(hourLines[i], true); lv_obj_set_hidden(hourLines[i], true);