summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2017-02-27 16:14:31 -0500
committerGravatar GitHub2017-02-27 16:14:31 -0500
commitad4097e75cdf37a8f9198c67aec2b160858347c0 (patch)
treeba925da16abbe0a653a89e56c387829b7746853f
parentMerge pull request #2594 from wwylele/ir-separate (diff)
parentTimer: restore missing signaled=true from #2421 (diff)
downloadyuzu-ad4097e75cdf37a8f9198c67aec2b160858347c0.tar.gz
yuzu-ad4097e75cdf37a8f9198c67aec2b160858347c0.tar.xz
yuzu-ad4097e75cdf37a8f9198c67aec2b160858347c0.zip
Merge pull request #2603 from wwylele/please-signal
Timer: restore missing signaled=true from #2421
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/timer.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/kernel/timer.cpp b/src/core/hle/kernel/timer.cpp
index 90e4b1f00..a00c75679 100644
--- a/src/core/hle/kernel/timer.cpp
+++ b/src/core/hle/kernel/timer.cpp
@@ -80,6 +80,8 @@ void Timer::WakeupAllWaitingThreads() {
80void Timer::Signal(int cycles_late) { 80void Timer::Signal(int cycles_late) {
81 LOG_TRACE(Kernel, "Timer %u fired", GetObjectId()); 81 LOG_TRACE(Kernel, "Timer %u fired", GetObjectId());
82 82
83 signaled = true;
84
83 // Resume all waiting threads 85 // Resume all waiting threads
84 WakeupAllWaitingThreads(); 86 WakeupAllWaitingThreads();
85 87