mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-20 21:27:52 -05:00
WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" pure virtual.
This commit is contained in:
@ -28,7 +28,7 @@ public:
|
||||
bool signaled; ///< Whether the event has already been signaled
|
||||
std::string name; ///< Name of event (optional)
|
||||
|
||||
ResultVal<bool> Wait() override {
|
||||
ResultVal<bool> ShouldWait() override {
|
||||
return MakeResult<bool>(!signaled);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user