summaryrefslogtreecommitdiffstats
path: root/src/core/core_timing.cpp
diff options
context:
space:
mode:
authorzawata <zawataza@gmail.com>2015-06-28 04:29:21 +0200
committerzawata <zawataza@gmail.com>2015-07-19 12:59:47 +0200
commit1be1ff23a9f6587d0867c11093d153e16f4b650c (patch)
tree92531ff73077ca2966832227ab9654deafba761a /src/core/core_timing.cpp
parentCommon : Fix Conversion Warnings (diff)
downloadyuzu-1be1ff23a9f6587d0867c11093d153e16f4b650c.tar
yuzu-1be1ff23a9f6587d0867c11093d153e16f4b650c.tar.gz
yuzu-1be1ff23a9f6587d0867c11093d153e16f4b650c.tar.bz2
yuzu-1be1ff23a9f6587d0867c11093d153e16f4b650c.tar.lz
yuzu-1be1ff23a9f6587d0867c11093d153e16f4b650c.tar.xz
yuzu-1be1ff23a9f6587d0867c11093d153e16f4b650c.tar.zst
yuzu-1be1ff23a9f6587d0867c11093d153e16f4b650c.zip
Diffstat (limited to 'src/core/core_timing.cpp')
-rw-r--r--src/core/core_timing.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core_timing.cpp b/src/core/core_timing.cpp
index 72006a53e..20f2da0fe 100644
--- a/src/core/core_timing.cpp
+++ b/src/core/core_timing.cpp
@@ -502,7 +502,7 @@ void Advance() {
Core::g_app_core->down_count += diff;
}
if (advance_callback)
- advance_callback(cycles_executed);
+ advance_callback(static_cast<int>(cycles_executed));
}
void LogPendingEvents() {