diff --git a/src/core/hle/kernel/timer.cpp b/src/core/hle/kernel/timer.cpp
index 90e4b1f005..a00c756798 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();