Kernel: Remove previous scheduled event when a Timer is re-Set

pull/8/head
Yuri Kunde Schlesner 10 years ago
parent 8441591659
commit ec9c773251

@ -38,6 +38,9 @@ void Timer::Acquire() {
}
void Timer::Set(s64 initial, s64 interval) {
// Ensure we get rid of any previous scheduled event
Cancel();
initial_delay = initial;
interval_delay = interval;

Loading…
Cancel
Save