mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-13 22:17:59 -05:00
WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" pure virtual.
This commit is contained in:
@ -29,7 +29,7 @@ public:
|
||||
u64 initial_delay; ///< The delay until the timer fires for the first time
|
||||
u64 interval_delay; ///< The delay until the timer fires after the first time
|
||||
|
||||
ResultVal<bool> Wait() override {
|
||||
ResultVal<bool> ShouldWait() override {
|
||||
return MakeResult<bool>(!signaled);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user