summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-03-04 17:52:08 +0100
committerGitHub <noreply@github.com>2018-03-04 17:52:08 +0100
commit3c3d5eeddf34bc52b2770df8f1c4cda1dc8e5b77 (patch)
tree43bd3a05be18765314f946958a87999bb8ae13b1 /src/core/hle/service/hid
parentMerge pull request #226 from Subv/buffer_queue_event (diff)
parentCoreTiming: Unschedule the pending events when an Interface is destroyed. (diff)
downloadyuzu-3c3d5eeddf34bc52b2770df8f1c4cda1dc8e5b77.tar
yuzu-3c3d5eeddf34bc52b2770df8f1c4cda1dc8e5b77.tar.gz
yuzu-3c3d5eeddf34bc52b2770df8f1c4cda1dc8e5b77.tar.bz2
yuzu-3c3d5eeddf34bc52b2770df8f1c4cda1dc8e5b77.tar.lz
yuzu-3c3d5eeddf34bc52b2770df8f1c4cda1dc8e5b77.tar.xz
yuzu-3c3d5eeddf34bc52b2770df8f1c4cda1dc8e5b77.tar.zst
yuzu-3c3d5eeddf34bc52b2770df8f1c4cda1dc8e5b77.zip
Diffstat (limited to 'src/core/hle/service/hid')
-rw-r--r--src/core/hle/service/hid/hid.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp
index dacd1862d..7e04ad8d4 100644
--- a/src/core/hle/service/hid/hid.cpp
+++ b/src/core/hle/service/hid/hid.cpp
@@ -45,6 +45,10 @@ public:
CoreTiming::ScheduleEvent(pad_update_ticks, pad_update_event);
}
+ ~IAppletResource() {
+ CoreTiming::UnscheduleEvent(pad_update_event, 0);
+ }
+
private:
void GetSharedMemoryHandle(Kernel::HLERequestContext& ctx) {
IPC::ResponseBuilder rb{ctx, 2, 1};