Browse Source

Fix log entry in timer::signal (#2600)

nce_cpp
B3n30 9 years ago
committed by Sebastian Valle
parent
commit
3fef6c1b0b
  1. 2
      src/core/hle/kernel/timer.cpp

2
src/core/hle/kernel/timer.cpp

@ -78,7 +78,7 @@ void Timer::WakeupAllWaitingThreads() {
}
void Timer::Signal(int cycles_late) {
LOG_TRACE(Kernel, "Timer %08" PRIx64 " fired", timer_handle);
LOG_TRACE(Kernel, "Timer %u fired", GetObjectId());
// Resume all waiting threads
WakeupAllWaitingThreads();

Loading…
Cancel
Save