diff options
| author | JF002 <JF002@users.noreply.github.com> | 2021-04-18 10:47:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-18 10:47:46 +0200 |
| commit | 6eaa395e7d663dd460798f5f327bd3e242e0ebc2 (patch) | |
| tree | c09c455cc6619cf24c8ff4923d70bacd83d19969 /src/displayapp/screens/StopWatch.h | |
| parent | 4152306bc3c073a9986e40b23af4368dd6d9fc4d (diff) | |
| parent | b221cc1731722b419a43a89ab75f5685ebf6282f (diff) | |
Merge pull request #285 from Peetz0r/fix-stopwatch-formatting
Fix stopwatch formatting
Diffstat (limited to 'src/displayapp/screens/StopWatch.h')
| -rw-r--r-- | src/displayapp/screens/StopWatch.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/displayapp/screens/StopWatch.h b/src/displayapp/screens/StopWatch.h index b882cab5..ff604361 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); |
