diff options
author | bunnei <bunneidev@gmail.com> | 2017-02-27 22:14:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-27 22:14:31 +0100 |
commit | ad4097e75cdf37a8f9198c67aec2b160858347c0 (patch) | |
tree | ba925da16abbe0a653a89e56c387829b7746853f | |
parent | Merge pull request #2594 from wwylele/ir-separate (diff) | |
parent | Timer: restore missing signaled=true from #2421 (diff) | |
download | yuzu-ad4097e75cdf37a8f9198c67aec2b160858347c0.tar yuzu-ad4097e75cdf37a8f9198c67aec2b160858347c0.tar.gz yuzu-ad4097e75cdf37a8f9198c67aec2b160858347c0.tar.bz2 yuzu-ad4097e75cdf37a8f9198c67aec2b160858347c0.tar.lz yuzu-ad4097e75cdf37a8f9198c67aec2b160858347c0.tar.xz yuzu-ad4097e75cdf37a8f9198c67aec2b160858347c0.tar.zst yuzu-ad4097e75cdf37a8f9198c67aec2b160858347c0.zip |
-rw-r--r-- | src/core/hle/kernel/timer.cpp | 2 |
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() { void Timer::Signal(int cycles_late) { LOG_TRACE(Kernel, "Timer %u fired", GetObjectId()); + signaled = true; + // Resume all waiting threads WakeupAllWaitingThreads(); |