Skip to content

Commit e654a49

Browse files
committed
Add missing hex 'f' in the terminal watchface's time label
1 parent 2e90564 commit e654a49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/displayapp/screens/WatchFaceTerminal.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ void WatchFaceTerminal::Refresh() {
107107
hour = hour - 12;
108108
ampmChar[0] = 'P';
109109
}
110-
lv_label_set_text_fmt(label_time, "#fffff [TIME]# #11cc55 %02d:%02d:%02d %s#", hour, minute, second, ampmChar);
110+
lv_label_set_text_fmt(label_time, "#ffffff [TIME]# #11cc55 %02d:%02d:%02d %s#", hour, minute, second, ampmChar);
111111
} else {
112112
lv_label_set_text_fmt(label_time, "#ffffff [TIME]# #11cc55 %02d:%02d:%02d#", hour, minute, second);
113113
}

0 commit comments

Comments
 (0)