summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2019-03-25 21:06:33 -0400
committerGravatar GitHub2019-03-25 21:06:33 -0400
commit595511876e9669c09c7b60a2fa4a1164dc5d0e66 (patch)
treedc2ab78d68f54f61d06fe0596d104cd16cbd3fbe /src/core/hle/kernel/kernel.cpp
parentMerge pull request #2286 from lioncash/fwd (diff)
parentcore/core_timing: Make callback parameters consistent (diff)
downloadyuzu-595511876e9669c09c7b60a2fa4a1164dc5d0e66.tar.gz
yuzu-595511876e9669c09c7b60a2fa4a1164dc5d0e66.tar.xz
yuzu-595511876e9669c09c7b60a2fa4a1164dc5d0e66.zip
Merge pull request #2287 from lioncash/coretiming-cb
core/core_timing: Make callback parameters consistent
Diffstat (limited to 'src/core/hle/kernel/kernel.cpp')
-rw-r--r--src/core/hle/kernel/kernel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp
index 4d224d01d..a7e4ddc05 100644
--- a/src/core/hle/kernel/kernel.cpp
+++ b/src/core/hle/kernel/kernel.cpp
@@ -29,7 +29,7 @@ namespace Kernel {
29 * @param thread_handle The handle of the thread that's been awoken 29 * @param thread_handle The handle of the thread that's been awoken
30 * @param cycles_late The number of CPU cycles that have passed since the desired wakeup time 30 * @param cycles_late The number of CPU cycles that have passed since the desired wakeup time
31 */ 31 */
32static void ThreadWakeupCallback(u64 thread_handle, [[maybe_unused]] int cycles_late) { 32static void ThreadWakeupCallback(u64 thread_handle, [[maybe_unused]] s64 cycles_late) {
33 const auto proper_handle = static_cast<Handle>(thread_handle); 33 const auto proper_handle = static_cast<Handle>(thread_handle);
34 const auto& system = Core::System::GetInstance(); 34 const auto& system = Core::System::GetInstance();
35 35