diff options
| author | 2015-06-27 19:29:21 -0700 | |
|---|---|---|
| committer | 2015-07-19 03:59:47 -0700 | |
| commit | 1be1ff23a9f6587d0867c11093d153e16f4b650c (patch) | |
| tree | 92531ff73077ca2966832227ab9654deafba761a /src/core/core_timing.cpp | |
| parent | Common : Fix Conversion Warnings (diff) | |
| download | yuzu-1be1ff23a9f6587d0867c11093d153e16f4b650c.tar.gz yuzu-1be1ff23a9f6587d0867c11093d153e16f4b650c.tar.xz yuzu-1be1ff23a9f6587d0867c11093d153e16f4b650c.zip | |
Core : Fix Conversion Warnings
Diffstat (limited to 'src/core/core_timing.cpp')
| -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() { | |||
| 502 | Core::g_app_core->down_count += diff; | 502 | Core::g_app_core->down_count += diff; |
| 503 | } | 503 | } |
| 504 | if (advance_callback) | 504 | if (advance_callback) |
| 505 | advance_callback(cycles_executed); | 505 | advance_callback(static_cast<int>(cycles_executed)); |
| 506 | } | 506 | } |
| 507 | 507 | ||
| 508 | void LogPendingEvents() { | 508 | void LogPendingEvents() { |