Stopwatch: improve variable naming

msec => hundredths
This commit is contained in:
Peetz0r
2021-04-17 23:47:53 +02:00
parent 7caeecc09b
commit b221cc1731
2 changed files with 7 additions and 7 deletions

View File

@@ -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);