aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/timer.cpp
diff options
context:
space:
mode:
authorB3n30 <bene_thomas@web.de>2017-02-27 17:04:03 +0100
committerSebastian Valle <subv2112@gmail.com>2017-02-27 11:04:03 -0500
commitdcf115778aa9ee31c044860228c78315e7a8626e (patch)
treeefa424a98fe08a22d14d3fec547315ba63096a5f /src/core/hle/kernel/timer.cpp
parent0cb52ee74a8255eb0320c882bc9e70700317d16a (diff)
Fix log entry in timer::signal (#2600)
Diffstat (limited to 'src/core/hle/kernel/timer.cpp')
-rw-r--r--src/core/hle/kernel/timer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/timer.cpp b/src/core/hle/kernel/timer.cpp
index c42003e9d2..90e4b1f005 100644
--- a/src/core/hle/kernel/timer.cpp
+++ b/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();