diff --git a/source/mattermetricsView.mc b/source/mattermetricsView.mc index 0d8029b..5fcaf51 100644 --- a/source/mattermetricsView.mc +++ b/source/mattermetricsView.mc @@ -272,6 +272,11 @@ class mattermetricsView extends WatchUi.WatchFace { utcHours = utcHours - 12; } } else { + // If its negative, need to add 24 + if (utcHours < 0) { + utcHours = utcHours + 24; + } + if (getApp().getProperty("UseMilitaryFormat")) { timeFormat = "$1$$2$"; hours = hours.format("%02d");