DreierF / MyTargets

Android app, which helps archers keep track of their training progress
GNU General Public License v2.0
81 stars 44 forks source link

Fix Timer countdown rounding issue #381

Closed Camille019 closed 5 years ago

Camille019 commented 5 years ago

The timer does not match official timers, and there is a disturbing second left between the 0 and the STOP.

The actual sequence looks like: 9 -> ... -> 1 -> 0 -> 119 -> ... -> 1 -> 0 -> STOP

This PR change the sequence to: 10 -> ... -> 2 -> 1 -> 120 -> ... -> 2 -> 1 -> STOP

DreierF commented 5 years ago

Thank for the contribution 😉