diff options
author | Lioncash <mathew1800@gmail.com> | 2018-04-30 09:24:27 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-04-30 09:32:59 +0200 |
commit | 0197e28cc95e96e651eab555f512d0bb292e9215 (patch) | |
tree | ed7367dd74a937809d9501b2d848e8e981b538ba /src/core/hle/service/nvflinger/nvflinger.cpp | |
parent | Merge pull request #424 from lioncash/string (diff) | |
download | yuzu-0197e28cc95e96e651eab555f512d0bb292e9215.tar yuzu-0197e28cc95e96e651eab555f512d0bb292e9215.tar.gz yuzu-0197e28cc95e96e651eab555f512d0bb292e9215.tar.bz2 yuzu-0197e28cc95e96e651eab555f512d0bb292e9215.tar.lz yuzu-0197e28cc95e96e651eab555f512d0bb292e9215.tar.xz yuzu-0197e28cc95e96e651eab555f512d0bb292e9215.tar.zst yuzu-0197e28cc95e96e651eab555f512d0bb292e9215.zip |
Diffstat (limited to 'src/core/hle/service/nvflinger/nvflinger.cpp')
-rw-r--r-- | src/core/hle/service/nvflinger/nvflinger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvflinger/nvflinger.cpp b/src/core/hle/service/nvflinger/nvflinger.cpp index 3481e48d0..5c50ed601 100644 --- a/src/core/hle/service/nvflinger/nvflinger.cpp +++ b/src/core/hle/service/nvflinger/nvflinger.cpp @@ -19,7 +19,7 @@ namespace Service::NVFlinger { constexpr size_t SCREEN_REFRESH_RATE = 60; -constexpr u64 frame_ticks = static_cast<u64>(BASE_CLOCK_RATE / SCREEN_REFRESH_RATE); +constexpr u64 frame_ticks = static_cast<u64>(CoreTiming::BASE_CLOCK_RATE / SCREEN_REFRESH_RATE); NVFlinger::NVFlinger() { // Add the different displays to the list of displays. |