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/audio | |
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/audio')
-rw-r--r-- | src/core/hle/service/audio/audout_u.cpp | 2 | ||||
-rw-r--r-- | src/core/hle/service/audio/audren_u.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/audio/audout_u.cpp b/src/core/hle/service/audio/audout_u.cpp index 6297dc450..fa3728672 100644 --- a/src/core/hle/service/audio/audout_u.cpp +++ b/src/core/hle/service/audio/audout_u.cpp @@ -18,7 +18,7 @@ constexpr u32 sample_rate{48000}; /// to more audio channels (probably when Docked I guess) constexpr u32 audio_channels{2}; /// TODO(st4rk): find a proper value for the audio_ticks -constexpr u64 audio_ticks{static_cast<u64>(BASE_CLOCK_RATE / 500)}; +constexpr u64 audio_ticks{static_cast<u64>(CoreTiming::BASE_CLOCK_RATE / 500)}; class IAudioOut final : public ServiceFramework<IAudioOut> { public: diff --git a/src/core/hle/service/audio/audren_u.cpp b/src/core/hle/service/audio/audren_u.cpp index 291885db8..0d6eb1d51 100644 --- a/src/core/hle/service/audio/audren_u.cpp +++ b/src/core/hle/service/audio/audren_u.cpp @@ -12,7 +12,7 @@ namespace Service::Audio { /// TODO(bunnei): Find a proper value for the audio_ticks -constexpr u64 audio_ticks{static_cast<u64>(BASE_CLOCK_RATE / 200)}; +constexpr u64 audio_ticks{static_cast<u64>(CoreTiming::BASE_CLOCK_RATE / 200)}; class IAudioRenderer final : public ServiceFramework<IAudioRenderer> { public: |