diff options
| author | 2017-01-16 19:38:35 -0300 | |
|---|---|---|
| committer | 2017-01-16 19:38:35 -0300 | |
| commit | 55c91ae782f9a05411ba869f7a83de87d29a0adf (patch) | |
| tree | f40e211ce132a79fa9dbff5a74980d0a84bde3ff /src/core/core_timing.h | |
| parent | Merge pull request #2435 from mailwl/gsp-mask (diff) | |
| parent | CoreTiming: use named constant for ARM11 clock rate (diff) | |
| download | yuzu-55c91ae782f9a05411ba869f7a83de87d29a0adf.tar.gz yuzu-55c91ae782f9a05411ba869f7a83de87d29a0adf.tar.xz yuzu-55c91ae782f9a05411ba869f7a83de87d29a0adf.zip | |
Merge pull request #2442 from wwylele/hid-signal
HID: manages updating itself using correct ticks
Diffstat (limited to 'src/core/core_timing.h')
| -rw-r--r-- | src/core/core_timing.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/core_timing.h b/src/core/core_timing.h index b72a1b500..d2f85cd4d 100644 --- a/src/core/core_timing.h +++ b/src/core/core_timing.h | |||
| @@ -21,6 +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 | extern int g_clock_rate_arm11; | 25 | extern int g_clock_rate_arm11; |
| 25 | 26 | ||
| 26 | inline s64 msToCycles(int ms) { | 27 | inline s64 msToCycles(int ms) { |