From dcf115778aa9ee31c044860228c78315e7a8626e Mon Sep 17 00:00:00 2001 From: B3n30 Date: Mon, 27 Feb 2017 17:04:03 +0100 Subject: Fix log entry in timer::signal (#2600) --- src/core/hle/kernel/timer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/core/hle/kernel/timer.cpp b/src/core/hle/kernel/timer.cpp index c42003e9d..90e4b1f00 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(); -- cgit v1.2.3