From e5a9f1c64483e01b7856c581ae5685d0c5ad88dc Mon Sep 17 00:00:00 2001 From: bunnei Date: Sun, 18 Jan 2015 13:25:51 -0500 Subject: Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks. --- src/core/hle/kernel/kernel.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/core/hle/kernel/kernel.h') diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h index cfaf0c90..5bf9a2bf 100644 --- a/src/core/hle/kernel/kernel.h +++ b/src/core/hle/kernel/kernel.h @@ -65,11 +65,10 @@ public: virtual Kernel::HandleType GetHandleType() const = 0; /** - * Check if this object is available, (optionally) wait the current thread if not - * @param wait_thread If true, wait the current thread if this object is unavailable + * Check if this object is available * @return True if the current thread should wait due to this object being unavailable */ - virtual ResultVal Wait(bool wait_thread) { + virtual ResultVal Wait() { LOG_ERROR(Kernel, "(UNIMPLEMENTED)"); return UnimplementedFunction(ErrorModule::Kernel); } -- cgit v1.2.3