summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_writable_event.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/k_writable_event.h')
-rw-r--r--src/core/hle/kernel/k_writable_event.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_writable_event.h b/src/core/hle/kernel/k_writable_event.h
index e289e80c4..3fd0c7d0a 100644
--- a/src/core/hle/kernel/k_writable_event.h
+++ b/src/core/hle/kernel/k_writable_event.h
@@ -25,8 +25,8 @@ public:
static void PostDestroy([[maybe_unused]] uintptr_t arg) {}
void Initialize(KEvent* parent_, std::string&& name_);
- ResultCode Signal();
- ResultCode Clear();
+ Result Signal();
+ Result Clear();
KEvent* GetParent() const {
return parent;