summaryrefslogtreecommitdiffstats
path: root/src/core/hle
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-04-04 03:47:09 +0200
committerGitHub <noreply@github.com>2019-04-04 03:47:09 +0200
commita655b59cef71e4af7d5ba7a7859fcf08c0dc4618 (patch)
tree6d90be8ab06ec4f09d99242a79238506cfbd320f /src/core/hle
parentMerge pull request #2294 from lioncash/fatal (diff)
parentkernel/object: Remove unused handle type entry (diff)
downloadyuzu-a655b59cef71e4af7d5ba7a7859fcf08c0dc4618.tar
yuzu-a655b59cef71e4af7d5ba7a7859fcf08c0dc4618.tar.gz
yuzu-a655b59cef71e4af7d5ba7a7859fcf08c0dc4618.tar.bz2
yuzu-a655b59cef71e4af7d5ba7a7859fcf08c0dc4618.tar.lz
yuzu-a655b59cef71e4af7d5ba7a7859fcf08c0dc4618.tar.xz
yuzu-a655b59cef71e4af7d5ba7a7859fcf08c0dc4618.tar.zst
yuzu-a655b59cef71e4af7d5ba7a7859fcf08c0dc4618.zip
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/kernel/object.cpp1
-rw-r--r--src/core/hle/kernel/object.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/src/core/hle/kernel/object.cpp b/src/core/hle/kernel/object.cpp
index 217144efc..10431e94c 100644
--- a/src/core/hle/kernel/object.cpp
+++ b/src/core/hle/kernel/object.cpp
@@ -24,7 +24,6 @@ bool Object::IsWaitable() const {
case HandleType::WritableEvent:
case HandleType::SharedMemory:
case HandleType::TransferMemory:
- case HandleType::AddressArbiter:
case HandleType::ResourceLimit:
case HandleType::ClientPort:
case HandleType::ClientSession:
diff --git a/src/core/hle/kernel/object.h b/src/core/hle/kernel/object.h
index 3f6baa094..332876c27 100644
--- a/src/core/hle/kernel/object.h
+++ b/src/core/hle/kernel/object.h
@@ -25,7 +25,6 @@ enum class HandleType : u32 {
TransferMemory,
Thread,
Process,
- AddressArbiter,
ResourceLimit,
ClientPort,
ServerPort,