diff options
author | bunnei <bunneidev@gmail.com> | 2019-05-09 19:24:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-09 19:24:13 +0200 |
commit | 7cb17834c76df6fc394d8b1b29e8f752f966710b (patch) | |
tree | 8d4edefdcc7b730c8ef89c4b9f9f9c6d59121c56 /src/core | |
parent | Merge pull request #2454 from lioncash/cflag (diff) | |
parent | service/audctl: Update documentation comments to be relative to 8.0.0 (diff) | |
download | yuzu-7cb17834c76df6fc394d8b1b29e8f752f966710b.tar yuzu-7cb17834c76df6fc394d8b1b29e8f752f966710b.tar.gz yuzu-7cb17834c76df6fc394d8b1b29e8f752f966710b.tar.bz2 yuzu-7cb17834c76df6fc394d8b1b29e8f752f966710b.tar.lz yuzu-7cb17834c76df6fc394d8b1b29e8f752f966710b.tar.xz yuzu-7cb17834c76df6fc394d8b1b29e8f752f966710b.tar.zst yuzu-7cb17834c76df6fc394d8b1b29e8f752f966710b.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/service/audio/audctl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/audio/audctl.cpp b/src/core/hle/service/audio/audctl.cpp index f43e512e9..6a01d4d29 100644 --- a/src/core/hle/service/audio/audctl.cpp +++ b/src/core/hle/service/audio/audctl.cpp @@ -50,7 +50,7 @@ void AudCtl::GetTargetVolumeMin(Kernel::HLERequestContext& ctx) { LOG_DEBUG(Audio, "called."); // This service function is currently hardcoded on the - // actual console to this value (as of 6.0.0). + // actual console to this value (as of 8.0.0). constexpr s32 target_min_volume = 0; IPC::ResponseBuilder rb{ctx, 3}; @@ -62,7 +62,7 @@ void AudCtl::GetTargetVolumeMax(Kernel::HLERequestContext& ctx) { LOG_DEBUG(Audio, "called."); // This service function is currently hardcoded on the - // actual console to this value (as of 6.0.0). + // actual console to this value (as of 8.0.0). constexpr s32 target_max_volume = 15; IPC::ResponseBuilder rb{ctx, 3}; |