diff options
author | Lioncash <mathew1800@gmail.com> | 2019-04-11 22:30:52 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-04-11 22:34:53 +0200 |
commit | 6300ccbc3c23ad24d6491a4e8b6b40a439fc611c (patch) | |
tree | a820194db7b71e2ddff4808b8dcae466cf1d8861 /src/core/hle/kernel/readable_event.h | |
parent | Merge pull request #2354 from lioncash/header (diff) | |
download | yuzu-6300ccbc3c23ad24d6491a4e8b6b40a439fc611c.tar yuzu-6300ccbc3c23ad24d6491a4e8b6b40a439fc611c.tar.gz yuzu-6300ccbc3c23ad24d6491a4e8b6b40a439fc611c.tar.bz2 yuzu-6300ccbc3c23ad24d6491a4e8b6b40a439fc611c.tar.lz yuzu-6300ccbc3c23ad24d6491a4e8b6b40a439fc611c.tar.xz yuzu-6300ccbc3c23ad24d6491a4e8b6b40a439fc611c.tar.zst yuzu-6300ccbc3c23ad24d6491a4e8b6b40a439fc611c.zip |
Diffstat (limited to 'src/core/hle/kernel/readable_event.h')
-rw-r--r-- | src/core/hle/kernel/readable_event.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/readable_event.h b/src/core/hle/kernel/readable_event.h index 2eb9dcbb7..84215f572 100644 --- a/src/core/hle/kernel/readable_event.h +++ b/src/core/hle/kernel/readable_event.h @@ -31,7 +31,7 @@ public: return reset_type; } - static const HandleType HANDLE_TYPE = HandleType::ReadableEvent; + static constexpr HandleType HANDLE_TYPE = HandleType::ReadableEvent; HandleType GetHandleType() const override { return HANDLE_TYPE; } |