mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 14:15:41 +12:00
Fix ambiguity between enum and type
This commit is contained in:
parent
977ab53b68
commit
13f2ddc77e
1 changed files with 2 additions and 3 deletions
|
@ -641,9 +641,8 @@ void Kernel::svcReleaseSemaphore() {
|
|||
// can simply compile to a fast sub+cmp+set despite looking slow
|
||||
bool Kernel::isWaitable(const KernelObject* object) {
|
||||
auto type = object->type;
|
||||
using enum KernelObjectType;
|
||||
|
||||
return type == Event || type == Mutex || type == Port || type == Semaphore || type == Timer || type == Thread;
|
||||
return type == KernelObjectType::Event || type == KernelObjectType::Mutex || type == KernelObjectType::Port ||
|
||||
type == KernelObjectType::Semaphore || type == KernelObjectType::Timer || type == KernelObjectType::Thread;
|
||||
}
|
||||
|
||||
// Returns whether we should wait on a sync object or not
|
||||
|
|
Loading…
Add table
Reference in a new issue