diff options
author | Lioncash <mathew1800@gmail.com> | 2019-04-27 23:17:55 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-04-27 23:17:58 -0400 |
commit | 565fce71b1a9bb8b6d7ebf64a8289fae06dfcc4a (patch) | |
tree | 5f32e45c33f3ef593d9d0066f8ecde4ff372e293 | |
parent | 78574e7a470a29e7ef0c1cc062d334d133c60830 (diff) |
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.
-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}; |