mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-02 13:27:52 +00:00
Kernel: Remove previous scheduled event when a Timer is re-Set
This commit is contained in:
parent
8441591659
commit
ec9c773251
1 changed files with 3 additions and 0 deletions
|
@ -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…
Reference in a new issue