From 19f8f86bdbe86486017e2fd60ecc17a799bf9a96 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 18 Apr 2019 15:57:16 -0400 Subject: service/audctl: Implement GetTargetVolumeMin() and GetTargetVolumeMax() These two service functions are literally hardcoded to always return these values without any other error checking. --- src/core/hle/service/audio/audctl.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/core/hle/service/audio/audctl.h') diff --git a/src/core/hle/service/audio/audctl.h b/src/core/hle/service/audio/audctl.h index 9d2d9e83b..c7fafc02e 100644 --- a/src/core/hle/service/audio/audctl.h +++ b/src/core/hle/service/audio/audctl.h @@ -12,6 +12,10 @@ class AudCtl final : public ServiceFramework { public: explicit AudCtl(); ~AudCtl() override; + +private: + void GetTargetVolumeMin(Kernel::HLERequestContext& ctx); + void GetTargetVolumeMax(Kernel::HLERequestContext& ctx); }; } // namespace Service::Audio -- cgit v1.2.3