summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/timer.cpp
diff options
context:
space:
mode:
authorGravatar Mat M2019-01-04 09:18:41 -0500
committerGravatar GitHub2019-01-04 09:18:41 -0500
commitc5262b1890dc183532fe2058ca5b868d0a616824 (patch)
tree933257f9b1a9d8122772b4e7bc2c5535e1e5dd8b /src/core/hle/kernel/timer.cpp
parentMerge pull request #1975 from lioncash/vi (diff)
parentRemoved pulse event type (diff)
downloadyuzu-c5262b1890dc183532fe2058ca5b868d0a616824.tar.gz
yuzu-c5262b1890dc183532fe2058ca5b868d0a616824.tar.xz
yuzu-c5262b1890dc183532fe2058ca5b868d0a616824.zip
Merge pull request #1984 from ogniK5377/remove-pulse
Removed pulse event type
Diffstat (limited to 'src/core/hle/kernel/timer.cpp')
-rw-r--r--src/core/hle/kernel/timer.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/hle/kernel/timer.cpp b/src/core/hle/kernel/timer.cpp
index 6957b16e0..2c4f50e2b 100644
--- a/src/core/hle/kernel/timer.cpp
+++ b/src/core/hle/kernel/timer.cpp
@@ -68,9 +68,6 @@ void Timer::Clear() {
68 68
69void Timer::WakeupAllWaitingThreads() { 69void Timer::WakeupAllWaitingThreads() {
70 WaitObject::WakeupAllWaitingThreads(); 70 WaitObject::WakeupAllWaitingThreads();
71
72 if (reset_type == ResetType::Pulse)
73 signaled = false;
74} 71}
75 72
76void Timer::Signal(int cycles_late) { 73void Timer::Signal(int cycles_late) {