mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-14 23:57:58 -05:00
Timers: Immediately signal the timer if it was started with an initial value of 0.
This commit is contained in:
@ -54,6 +54,14 @@ public:
|
||||
void Cancel();
|
||||
void Clear();
|
||||
|
||||
/**
|
||||
* Signals the timer, waking up any waiting threads and rescheduling it
|
||||
* for the next interval.
|
||||
* This method should not be called from outside the timer callback handler,
|
||||
* lest multiple callback events get scheduled.
|
||||
*/
|
||||
void Signal(int cycles_late);
|
||||
|
||||
private:
|
||||
Timer();
|
||||
~Timer() override;
|
||||
|
Reference in New Issue
Block a user