summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2019-04-27 23:17:55 -0400
committerGravatar Lioncash2019-04-27 23:17:58 -0400
commit565fce71b1a9bb8b6d7ebf64a8289fae06dfcc4a (patch)
tree5f32e45c33f3ef593d9d0066f8ecde4ff372e293 /src
parentMerge pull request #2416 from lioncash/wait (diff)
downloadyuzu-565fce71b1a9bb8b6d7ebf64a8289fae06dfcc4a.tar.gz
yuzu-565fce71b1a9bb8b6d7ebf64a8289fae06dfcc4a.tar.xz
yuzu-565fce71b1a9bb8b6d7ebf64a8289fae06dfcc4a.zip
service/audctl: Update documentation comments to be relative to 8.0.0
The state of these service calls are still the same in version 8.0.0.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/audio/audctl.cpp4
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) {
50 LOG_DEBUG(Audio, "called."); 50 LOG_DEBUG(Audio, "called.");
51 51
52 // This service function is currently hardcoded on the 52 // This service function is currently hardcoded on the
53 // actual console to this value (as of 6.0.0). 53 // actual console to this value (as of 8.0.0).
54 constexpr s32 target_min_volume = 0; 54 constexpr s32 target_min_volume = 0;
55 55
56 IPC::ResponseBuilder rb{ctx, 3}; 56 IPC::ResponseBuilder rb{ctx, 3};
@@ -62,7 +62,7 @@ void AudCtl::GetTargetVolumeMax(Kernel::HLERequestContext& ctx) {
62 LOG_DEBUG(Audio, "called."); 62 LOG_DEBUG(Audio, "called.");
63 63
64 // This service function is currently hardcoded on the 64 // This service function is currently hardcoded on the
65 // actual console to this value (as of 6.0.0). 65 // actual console to this value (as of 8.0.0).
66 constexpr s32 target_max_volume = 15; 66 constexpr s32 target_max_volume = 15;
67 67
68 IPC::ResponseBuilder rb{ctx, 3}; 68 IPC::ResponseBuilder rb{ctx, 3};