We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23f1789 commit 5d85af0Copy full SHA for 5d85af0
1 file changed
src/components/stopwatch/StopWatchController.h
@@ -49,16 +49,16 @@ namespace Pinetime {
49
// Current state of stopwatch
50
StopWatchStates currentState = StopWatchStates::Cleared;
51
// Start time of current duration
52
- TickType_t startTime = 0;
+ TickType_t startTime;
53
// How much time was elapsed before current duration
54
- TickType_t timeElapsedPreviously = 0;
+ TickType_t timeElapsedPreviously;
55
56
// Maximum number of stored laps
57
static constexpr int histSize = 2;
58
// Lap storage
59
Utility::CircularBuffer<LapInfo, histSize> history;
60
// Highest lap number; may exceed histSize
61
- int maxLapNumber = 0;
+ int maxLapNumber;
62
};
63
}
64
0 commit comments