diff options
author | wwylele <wwylele@gmail.com> | 2017-02-27 21:43:10 +0100 |
---|---|---|
committer | wwylele <wwylele@gmail.com> | 2017-02-27 21:49:46 +0100 |
commit | 85ba60d5ecc6fbd809223318d76b6e7fb3c07d27 (patch) | |
tree | ba925da16abbe0a653a89e56c387829b7746853f /src | |
parent | Merge pull request #2594 from wwylele/ir-separate (diff) | |
download | yuzu-85ba60d5ecc6fbd809223318d76b6e7fb3c07d27.tar yuzu-85ba60d5ecc6fbd809223318d76b6e7fb3c07d27.tar.gz yuzu-85ba60d5ecc6fbd809223318d76b6e7fb3c07d27.tar.bz2 yuzu-85ba60d5ecc6fbd809223318d76b6e7fb3c07d27.tar.lz yuzu-85ba60d5ecc6fbd809223318d76b6e7fb3c07d27.tar.xz yuzu-85ba60d5ecc6fbd809223318d76b6e7fb3c07d27.tar.zst yuzu-85ba60d5ecc6fbd809223318d76b6e7fb3c07d27.zip |
Diffstat (limited to 'src')
-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(); |