diff options
| author | 2018-01-07 00:58:06 -0500 | |
|---|---|---|
| committer | 2018-01-07 00:58:06 -0500 | |
| commit | 79e0dd249e2cff0a0554663a050c1b35499cc13e (patch) | |
| tree | b7384d673add9b2a8dd19183f8660de549a646d4 /src/core/core_timing.h | |
| parent | svc: Implement svcWaitProcessWideKeyAtomic. (diff) | |
| download | yuzu-79e0dd249e2cff0a0554663a050c1b35499cc13e.tar.gz yuzu-79e0dd249e2cff0a0554663a050c1b35499cc13e.tar.xz yuzu-79e0dd249e2cff0a0554663a050c1b35499cc13e.zip | |
core_timing: Increase clock speed for Switch docked.
Diffstat (limited to 'src/core/core_timing.h')
| -rw-r--r-- | src/core/core_timing.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core_timing.h b/src/core/core_timing.h index 897350801..92c811af6 100644 --- a/src/core/core_timing.h +++ b/src/core/core_timing.h | |||
| @@ -21,7 +21,7 @@ | |||
| 21 | // inside callback: | 21 | // inside callback: |
| 22 | // ScheduleEvent(periodInCycles - cycles_late, callback, "whatever") | 22 | // ScheduleEvent(periodInCycles - cycles_late, callback, "whatever") |
| 23 | 23 | ||
| 24 | constexpr int BASE_CLOCK_RATE_ARM11 = 268123480; | 24 | constexpr int BASE_CLOCK_RATE = 383778816; // Switch clock speed is 384MHz docked |
| 25 | extern int g_clock_rate_arm11; | 25 | extern int g_clock_rate_arm11; |
| 26 | 26 | ||
| 27 | inline s64 msToCycles(int ms) { | 27 | inline s64 msToCycles(int ms) { |