diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2025-05-14 15:43:46 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2025-05-14 15:43:46 +0200 |
commit | c2819a30f6914267e5792b68ca8a500f0e06ce79 (patch) | |
tree | b6cf252d67a8d600a18012f25dde9f45a572006b /include/timer_base.h | |
parent | 0d7160d78d924749e7ef95d4df5b5af14f20bafa (diff) |
timer_base: fix zero(...)
Diffstat (limited to 'include/timer_base.h')
-rw-r--r-- | include/timer_base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/timer_base.h b/include/timer_base.h index dcc73b7..160136c 100644 --- a/include/timer_base.h +++ b/include/timer_base.h @@ -33,7 +33,7 @@ void stop(Timer *timer, int i) void zero(Timer *timer, int i) { - timer->time[0] = 0; + timer->time[i] = 0; } #else |