Shrink date display on Basalt (remove dot)

This commit is contained in:
2026-03-28 14:14:43 -04:00
parent d6567aa1e0
commit 03e6b06c93

View File

@@ -124,7 +124,7 @@ static void update_minute_1() {
// write the current date into a buffer & format // write the current date into a buffer & format
static char s_date_buffer[16]; static char s_date_buffer[16];
#if PBL_DISPLAY_WIDTH <= 144 #if PBL_DISPLAY_WIDTH <= 144
strftime(s_date_buffer, sizeof(s_date_buffer), "%m .%d", tick_time); strftime(s_date_buffer, sizeof(s_date_buffer), "%m%d", tick_time);
#else #else
strftime(s_date_buffer, sizeof(s_date_buffer), "%m.%d", tick_time); strftime(s_date_buffer, sizeof(s_date_buffer), "%m.%d", tick_time);
#endif #endif