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

This commit is contained in:
Yuri Kunde Schlesner 2015-01-31 10:40:16 -02:00
parent 8441591659
commit ec9c773251
1 changed files with 3 additions and 0 deletions

View File

@ -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;