summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_readable_event.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/k_readable_event.h')
-rw-r--r--src/core/hle/kernel/k_readable_event.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/core/hle/kernel/k_readable_event.h b/src/core/hle/kernel/k_readable_event.h
index 4c22f0584..8514d065a 100644
--- a/src/core/hle/kernel/k_readable_event.h
+++ b/src/core/hle/kernel/k_readable_event.h
@@ -6,7 +6,6 @@
#include "core/hle/kernel/k_auto_object.h"
#include "core/hle/kernel/k_synchronization_object.h"
-#include "core/hle/kernel/object.h"
#include "core/hle/kernel/slab_helpers.h"
#include "core/hle/result.h"
@@ -39,17 +38,6 @@ public:
ResultCode Clear();
ResultCode Reset();
- // DEPRECATED
-
- std::string GetTypeName() const override {
- return "KReadableEvent";
- }
-
- static constexpr HandleType HANDLE_TYPE = HandleType::ReadableEvent;
- HandleType GetHandleType() const override {
- return HANDLE_TYPE;
- }
-
private:
bool is_signaled{};
KEvent* parent{};