summaryrefslogtreecommitdiffstats
path: root/src/core/core_timing.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-03-24 23:11:32 +0100
committerLioncash <mathew1800@gmail.com>2019-03-24 23:12:17 +0100
commitc5d41fd812d7eb1a04f36b76c08fe971cee0868c (patch)
tree420a9ba00464d14b55e4346ae3951c61f7999cdc /src/core/core_timing.h
parentMerge pull request #2232 from lioncash/transfer-memory (diff)
downloadyuzu-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 '')
-rw-r--r--src/core/core_timing.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core_timing.h b/src/core/core_timing.h
index 59163bae1..9d2efde37 100644
--- a/src/core/core_timing.h
+++ b/src/core/core_timing.h
@@ -15,7 +15,7 @@
namespace Core::Timing {
/// A callback that may be scheduled for a particular core timing event.
-using TimedCallback = std::function<void(u64 userdata, int cycles_late)>;
+using TimedCallback = std::function<void(u64 userdata, s64 cycles_late)>;
/// Contains the characteristics of a particular event.
struct EventType {