diff options
| author | codingjourney <coding@journey.sk> | 2025-01-14 21:50:18 +0100 |
|---|---|---|
| committer | JF <JF002@users.noreply.github.com> | 2025-11-04 21:25:31 +0100 |
| commit | 144242afc2fcd4a6800a965e2f35a7cb961b983f (patch) | |
| tree | 54d64c6b9237ffe7479b318740b8e383a8e092d6 | |
| parent | 919b578540bd0252e27d11d878dc32560f1c6e01 (diff) | |
fixed a type declaration
| -rw-r--r-- | src/displayapp/screens/StopWatch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/screens/StopWatch.h b/src/displayapp/screens/StopWatch.h index 3e8d9e73..98c05bc4 100644 --- a/src/displayapp/screens/StopWatch.h +++ b/src/displayapp/screens/StopWatch.h @@ -49,7 +49,7 @@ namespace Pinetime::Applications { uint8_t displayedLaps = 3; lv_obj_t *time, *msecTime, *btnPlayPause, *btnStopLap, *txtPlayPause, *txtStopLap; lv_obj_t* lapText; - Utility::DirtyValue<TickType_t> renderedSeconds; + Utility::DirtyValue<uint32_t> renderedSeconds; bool hoursVisible = false; lv_task_t* taskRefresh; |
