summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ir/ir.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-03-12 21:06:31 +0100
committerLioncash <mathew1800@gmail.com>2016-03-12 21:06:31 +0100
commit12e92f17de40522e66954d3c5148e4520c9ca775 (patch)
tree0de55470238cb9579f7c190f044957c7bf76bdee /src/core/hle/service/ir/ir.cpp
parentMerge pull request #1266 from Subv/miiapplet (diff)
downloadyuzu-12e92f17de40522e66954d3c5148e4520c9ca775.tar
yuzu-12e92f17de40522e66954d3c5148e4520c9ca775.tar.gz
yuzu-12e92f17de40522e66954d3c5148e4520c9ca775.tar.bz2
yuzu-12e92f17de40522e66954d3c5148e4520c9ca775.tar.lz
yuzu-12e92f17de40522e66954d3c5148e4520c9ca775.tar.xz
yuzu-12e92f17de40522e66954d3c5148e4520c9ca775.tar.zst
yuzu-12e92f17de40522e66954d3c5148e4520c9ca775.zip
Diffstat (limited to 'src/core/hle/service/ir/ir.cpp')
-rw-r--r--src/core/hle/service/ir/ir.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/ir/ir.cpp b/src/core/hle/service/ir/ir.cpp
index c2121cb2e..505c441c6 100644
--- a/src/core/hle/service/ir/ir.cpp
+++ b/src/core/hle/service/ir/ir.cpp
@@ -99,8 +99,8 @@ void Init() {
transfer_shared_memory = nullptr;
// Create event handle(s)
- handle_event = Event::Create(RESETTYPE_ONESHOT, "IR:HandleEvent");
- conn_status_event = Event::Create(RESETTYPE_ONESHOT, "IR:ConnectionStatusEvent");
+ handle_event = Event::Create(ResetType::OneShot, "IR:HandleEvent");
+ conn_status_event = Event::Create(ResetType::OneShot, "IR:ConnectionStatusEvent");
}
void Shutdown() {