diff options
author | zawata <zawataza@gmail.com> | 2015-06-28 04:29:21 +0200 |
---|---|---|
committer | zawata <zawataza@gmail.com> | 2015-07-19 12:59:47 +0200 |
commit | 1be1ff23a9f6587d0867c11093d153e16f4b650c (patch) | |
tree | 92531ff73077ca2966832227ab9654deafba761a | |
parent | Common : Fix Conversion Warnings (diff) | |
download | yuzu-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 |
-rw-r--r-- | src/core/core_timing.cpp | 2 |
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() { |