summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/displayapp/screens/WatchFaceDigital.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/screens/WatchFaceDigital.cpp b/src/displayapp/screens/WatchFaceDigital.cpp
index 553feae..f2c3c27 100644
--- a/src/displayapp/screens/WatchFaceDigital.cpp
+++ b/src/displayapp/screens/WatchFaceDigital.cpp
@@ -145,7 +145,7 @@ void WatchFaceDigital::Refresh() {
hour -= 12;
hide_pm = false;
}
- h0 = hour < 10 ? ' ' : '0' + (hour-10);
+ h0 = hour < 10 ? ' ' : '1';
} else {
h0 = '0' + (hour / 10);
}