summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2017-08-19 12:09:35 -0500
committerSubv <subv2112@gmail.com>2017-08-21 08:34:30 -0500
commit8a9a4e2c42b6c2326140f7369374bf78a4645a8f (patch)
tree3c0f456b46633f27400ae16a7035d44921d3a14e /src
parent65f19b51c43fbc35a1f1bfb81d773eaf6b5fffd3 (diff)
GPU/Warnings: Explicitly cast the screen refresh ticks to u64.
Diffstat (limited to 'src')
-rw-r--r--src/core/hw/gpu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hw/gpu.cpp b/src/core/hw/gpu.cpp
index 6838e449c..83ad9d898 100644
--- a/src/core/hw/gpu.cpp
+++ b/src/core/hw/gpu.cpp
@@ -29,7 +29,7 @@ namespace GPU {
Regs g_regs;
/// 268MHz CPU clocks / 60Hz frames per second
-const u64 frame_ticks = BASE_CLOCK_RATE_ARM11 / SCREEN_REFRESH_RATE;
+const u64 frame_ticks = static_cast<u64>(BASE_CLOCK_RATE_ARM11 / SCREEN_REFRESH_RATE);
/// Event id for CoreTiming
static int vblank_event;