diff options
| author | bunnei <bunneidev@gmail.com> | 2022-10-29 23:36:15 -0700 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-29 23:36:15 -0700 | 
| commit | ccfdb7c1affe102e757f81d5c02f6b54e67dea54 (patch) | |
| tree | 41786102bab4c3588bc0c102098197dcb38fd383 | |
| parent | 316a2c1715b8b22f4320cde82878ba10657c48e7 (diff) | |
| parent | 6f0f7f1547cc9b238fe526813d7408ba3e2ce409 (diff) | |
Merge pull request #9149 from german77/volum
service: am: Stub SetRecordVolumeMuted
| -rw-r--r-- | src/core/hle/service/am/am.cpp | 13 | ||||
| -rw-r--r-- | src/core/hle/service/am/am.h | 1 | 
2 files changed, 13 insertions, 1 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp index e55233054..8ea7fd760 100644 --- a/src/core/hle/service/am/am.cpp +++ b/src/core/hle/service/am/am.cpp @@ -299,7 +299,7 @@ ISelfController::ISelfController(Core::System& system_, NVFlinger::NVFlinger& nv          {100, &ISelfController::SetAlbumImageTakenNotificationEnabled, "SetAlbumImageTakenNotificationEnabled"},          {110, nullptr, "SetApplicationAlbumUserData"},          {120, &ISelfController::SaveCurrentScreenshot, "SaveCurrentScreenshot"}, -        {130, nullptr, "SetRecordVolumeMuted"}, +        {130, &ISelfController::SetRecordVolumeMuted, "SetRecordVolumeMuted"},          {1000, nullptr, "GetDebugStorageChannel"},      };      // clang-format on @@ -597,6 +597,17 @@ void ISelfController::SaveCurrentScreenshot(Kernel::HLERequestContext& ctx) {      rb.Push(ResultSuccess);  } +void ISelfController::SetRecordVolumeMuted(Kernel::HLERequestContext& ctx) { +    IPC::RequestParser rp{ctx}; + +    const auto is_record_volume_muted = rp.Pop<bool>(); + +    LOG_WARNING(Service_AM, "(STUBBED) called. is_record_volume_muted={}", is_record_volume_muted); + +    IPC::ResponseBuilder rb{ctx, 2}; +    rb.Push(ResultSuccess); +} +  AppletMessageQueue::AppletMessageQueue(Core::System& system)      : service_context{system, "AppletMessageQueue"} {      on_new_message = service_context.CreateEvent("AMMessageQueue:OnMessageReceived"); diff --git a/src/core/hle/service/am/am.h b/src/core/hle/service/am/am.h index bb75c6281..a0fbfcfc5 100644 --- a/src/core/hle/service/am/am.h +++ b/src/core/hle/service/am/am.h @@ -182,6 +182,7 @@ private:      void GetAccumulatedSuspendedTickChangedEvent(Kernel::HLERequestContext& ctx);      void SetAlbumImageTakenNotificationEnabled(Kernel::HLERequestContext& ctx);      void SaveCurrentScreenshot(Kernel::HLERequestContext& ctx); +    void SetRecordVolumeMuted(Kernel::HLERequestContext& ctx);      enum class ScreenshotPermission : u32 {          Inherit = 0,  | 
