Skip to content

Commit 7dea64a

Browse files
mark9064JF002
authored andcommitted
Remove unneeded casts
1 parent a277316 commit 7dea64a

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
@@ -116,7 +116,7 @@ void WatchFaceTerminal::Refresh() {
116116
uint16_t year = dateTimeController.Year();
117117
Controllers::DateTime::Months month = dateTimeController.Month();
118118
uint8_t day = dateTimeController.Day();
119-
lv_label_set_text_fmt(labelDate, "#ffffff [DATE]# #007fff %04d-%02d-%02d#", short(year), char(month), char(day));
119+
lv_label_set_text_fmt(labelDate, "#ffffff [DATE]# #007fff %04d-%02d-%02d#", year, month, day);
120120
}
121121
}
122122

0 commit comments

Comments
 (0)