diff options
author | Lioncash <mathew1800@gmail.com> | 2019-03-24 23:11:32 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-03-24 23:12:17 +0100 |
commit | c5d41fd812d7eb1a04f36b76c08fe971cee0868c (patch) | |
tree | 420a9ba00464d14b55e4346ae3951c61f7999cdc /src/core/hle/kernel | |
parent | Merge pull request #2232 from lioncash/transfer-memory (diff) | |
download | yuzu-c5d41fd812d7eb1a04f36b76c08fe971cee0868c.tar yuzu-c5d41fd812d7eb1a04f36b76c08fe971cee0868c.tar.gz yuzu-c5d41fd812d7eb1a04f36b76c08fe971cee0868c.tar.bz2 yuzu-c5d41fd812d7eb1a04f36b76c08fe971cee0868c.tar.lz yuzu-c5d41fd812d7eb1a04f36b76c08fe971cee0868c.tar.xz yuzu-c5d41fd812d7eb1a04f36b76c08fe971cee0868c.tar.zst yuzu-c5d41fd812d7eb1a04f36b76c08fe971cee0868c.zip |
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r-- | src/core/hle/kernel/kernel.cpp | 2 |
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 { * @param thread_handle The handle of the thread that's been awoken * @param cycles_late The number of CPU cycles that have passed since the desired wakeup time */ -static void ThreadWakeupCallback(u64 thread_handle, [[maybe_unused]] int cycles_late) { +static void ThreadWakeupCallback(u64 thread_handle, [[maybe_unused]] s64 cycles_late) { const auto proper_handle = static_cast<Handle>(thread_handle); const auto& system = Core::System::GetInstance(); |