diff options
| author | 2017-02-27 17:04:03 +0100 | |
|---|---|---|
| committer | 2017-02-27 11:04:03 -0500 | |
| commit | dcf115778aa9ee31c044860228c78315e7a8626e (patch) | |
| tree | efa424a98fe08a22d14d3fec547315ba63096a5f /src | |
| parent | Doxygen: Amend minor issues (#2593) (diff) | |
| download | yuzu-dcf115778aa9ee31c044860228c78315e7a8626e.tar.gz yuzu-dcf115778aa9ee31c044860228c78315e7a8626e.tar.xz yuzu-dcf115778aa9ee31c044860228c78315e7a8626e.zip | |
Fix log entry in timer::signal (#2600)
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/kernel/timer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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() { | |||
| 78 | } | 78 | } |
| 79 | 79 | ||
| 80 | void Timer::Signal(int cycles_late) { | 80 | void Timer::Signal(int cycles_late) { |
| 81 | LOG_TRACE(Kernel, "Timer %08" PRIx64 " fired", timer_handle); | 81 | LOG_TRACE(Kernel, "Timer %u fired", GetObjectId()); |
| 82 | 82 | ||
| 83 | // Resume all waiting threads | 83 | // Resume all waiting threads |
| 84 | WakeupAllWaitingThreads(); | 84 | WakeupAllWaitingThreads(); |