aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle
diff options
context:
space:
mode:
authorNarr the Reg <[email protected]>2024-02-23 13:03:07 -0600
committerNarr the Reg <[email protected]>2024-02-23 18:58:51 -0600
commit0a0c257206b384fc9576d38d1904687a1a393f7f (patch)
treeb3af659a01c967e1a3082447a9ada02e5b055717 /src/core/hle
parent7019023cbc1d0f6b82cf80e5970a41befdec71ca (diff)
downloadyuzu-android-0a0c257206b384fc9576d38d1904687a1a393f7f.tar.gz
yuzu-android-0a0c257206b384fc9576d38d1904687a1a393f7f.zip
service: audio: Add missing logging properties of SetHeadphoneOutputLevelMode
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/audio/audio_controller.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/audio/audio_controller.cpp b/src/core/hle/service/audio/audio_controller.cpp
index c9804cf9c..7a51d1023 100644
--- a/src/core/hle/service/audio/audio_controller.cpp
+++ b/src/core/hle/service/audio/audio_controller.cpp
@@ -138,7 +138,7 @@ Result IAudioController::SetOutputModeSetting(Set::AudioOutputModeTarget target,
}
Result IAudioController::SetHeadphoneOutputLevelMode(HeadphoneOutputLevelMode output_level_mode) {
- LOG_WARNING(Audio, "(STUBBED) called");
+ LOG_WARNING(Audio, "(STUBBED) called, output_level_mode={}", output_level_mode);
R_SUCCEED();
}