aboutsummaryrefslogtreecommitdiffstats
path: root/src/displayapp/screens/StopWatch.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/displayapp/screens/StopWatch.h')
-rw-r--r--src/displayapp/screens/StopWatch.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/displayapp/screens/StopWatch.h b/src/displayapp/screens/StopWatch.h
index 409e3a19..d1acd162 100644
--- a/src/displayapp/screens/StopWatch.h
+++ b/src/displayapp/screens/StopWatch.h
@@ -13,6 +13,7 @@ namespace Pinetime::Applications::Screens {
enum class States { Init, Running, Halted };
struct TimeSeparated_t {
+ int hours;
int mins;
int secs;
int hundredths;
@@ -48,6 +49,7 @@ namespace Pinetime::Applications::Screens {
int lapsDone = 0;
lv_obj_t *time, *msecTime, *btnPlayPause, *btnStopLap, *txtPlayPause, *txtStopLap;
lv_obj_t* lapText;
+ bool isHoursLabelUpdated = false;
lv_task_t* taskRefresh;
};