2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

Timer: restore missing signaled=true from #2421

This commit is contained in:
wwylele 2017-02-27 22:43:10 +02:00
parent 5e334af369
commit 85ba60d5ec

View file

@ -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();