summaryrefslogtreecommitdiff
path: root/src/core/hw/gpu.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2018-01-07 00:58:06 -0500
committerGravatar bunnei2018-01-07 00:58:06 -0500
commit79e0dd249e2cff0a0554663a050c1b35499cc13e (patch)
treeb7384d673add9b2a8dd19183f8660de549a646d4 /src/core/hw/gpu.cpp
parentsvc: Implement svcWaitProcessWideKeyAtomic. (diff)
downloadyuzu-79e0dd249e2cff0a0554663a050c1b35499cc13e.tar.gz
yuzu-79e0dd249e2cff0a0554663a050c1b35499cc13e.tar.xz
yuzu-79e0dd249e2cff0a0554663a050c1b35499cc13e.zip
core_timing: Increase clock speed for Switch docked.
Diffstat (limited to 'src/core/hw/gpu.cpp')
-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 c828a776e..4826d9c79 100644
--- a/src/core/hw/gpu.cpp
+++ b/src/core/hw/gpu.cpp
@@ -29,7 +29,7 @@ namespace GPU {
29Regs g_regs; 29Regs g_regs;
30 30
31/// 268MHz CPU clocks / 60Hz frames per second 31/// 268MHz CPU clocks / 60Hz frames per second
32const u64 frame_ticks = static_cast<u64>(BASE_CLOCK_RATE_ARM11 / SCREEN_REFRESH_RATE); 32const u64 frame_ticks = static_cast<u64>(BASE_CLOCK_RATE / SCREEN_REFRESH_RATE);
33/// Event id for CoreTiming 33/// Event id for CoreTiming
34static int vblank_event; 34static int vblank_event;
35 35