summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/StopWatch.h
diff options
context:
space:
mode:
authorPeetz0r <github@haas-en-berg.nl>2021-04-17 21:47:53 (GMT)
committerPeetz0r <github@haas-en-berg.nl>2021-04-17 21:47:53 (GMT)
commitb221cc1731722b419a43a89ab75f5685ebf6282f (patch)
treeb1668d7550228f66eb9af7f439124fcd5e694d67 /src/displayapp/screens/StopWatch.h
parent7caeecc09b24e00a58f1b85b63ed9fafcc9be891 (diff)
Stopwatch: improve variable naming
msec => hundredths
Diffstat (limited to 'src/displayapp/screens/StopWatch.h')
-rw-r--r--src/displayapp/screens/StopWatch.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/displayapp/screens/StopWatch.h b/src/displayapp/screens/StopWatch.h
index b882cab..ff60436 100644
--- a/src/displayapp/screens/StopWatch.h
+++ b/src/displayapp/screens/StopWatch.h
@@ -18,7 +18,7 @@ namespace Pinetime::Applications::Screens {
struct TimeSeparated_t {
int mins;
int secs;
- int msecs;
+ int hundredths;
};
// A simple buffer to hold the latest two laps
@@ -66,7 +66,7 @@ namespace Pinetime::Applications::Screens {
StopWatch(DisplayApp* app);
~StopWatch() override;
bool Refresh() override;
-
+
void playPauseBtnEventHandler(lv_event_t event);
void stopLapBtnEventHandler(lv_event_t event);