Procházet zdrojové kódy

Timer: restore missing signaled=true from #2421

wwylele před 9 roky
rodič
revize
85ba60d5ec
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. 2 0
      src/core/hle/kernel/timer.cpp

+ 2 - 0
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();