summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2018-04-23 04:02:18 +0200
committerDavid Marcec <dmarcecguzman@gmail.com>2018-04-23 04:02:18 +0200
commit27650499bc74ec642c253a84fcf7f1c7812fdcac (patch)
tree90d6fd8921ae0e319166f4d52ade2ed71237cfb3 /src/core/hle/service/audio
parentlioncash proposed changes (diff)
downloadyuzu-27650499bc74ec642c253a84fcf7f1c7812fdcac.tar
yuzu-27650499bc74ec642c253a84fcf7f1c7812fdcac.tar.gz
yuzu-27650499bc74ec642c253a84fcf7f1c7812fdcac.tar.bz2
yuzu-27650499bc74ec642c253a84fcf7f1c7812fdcac.tar.lz
yuzu-27650499bc74ec642c253a84fcf7f1c7812fdcac.tar.xz
yuzu-27650499bc74ec642c253a84fcf7f1c7812fdcac.tar.zst
yuzu-27650499bc74ec642c253a84fcf7f1c7812fdcac.zip
Diffstat (limited to 'src/core/hle/service/audio')
-rw-r--r--src/core/hle/service/audio/audren_u.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/core/hle/service/audio/audren_u.cpp b/src/core/hle/service/audio/audren_u.cpp
index fe445552a..a9360614c 100644
--- a/src/core/hle/service/audio/audren_u.cpp
+++ b/src/core/hle/service/audio/audren_u.cpp
@@ -163,12 +163,10 @@ public:
{0x4, &IAudioDevice::QueryAudioDeviceSystemEvent, "QueryAudioDeviceSystemEvent"},
{0x5, &IAudioDevice::GetActiveChannelCount, "GetActiveChannelCount"},
{0x6, &IAudioDevice::ListAudioDeviceName,
- "ListAudioDeviceNameAuto"}, // Are these any different?
- {0x7, &IAudioDevice::SetAudioDeviceOutputVolume,
- "SetAudioDeviceOutputVolumeAuto"}, // Are these any different?
+ "ListAudioDeviceNameAuto"}, // TODO(ogniK): Confirm if autos are identical to non auto
+ {0x7, &IAudioDevice::SetAudioDeviceOutputVolume, "SetAudioDeviceOutputVolumeAuto"},
{0x8, nullptr, "GetAudioDeviceOutputVolumeAuto"},
- {0xa, &IAudioDevice::GetActiveAudioDeviceName,
- "GetActiveAudioDeviceNameAuto"}, // Are these any different?
+ {0xa, &IAudioDevice::GetActiveAudioDeviceName, "GetActiveAudioDeviceNameAuto"},
{0xb, nullptr, "QueryAudioDeviceInputEvent"},
{0xc, nullptr, "QueryAudioDeviceOutputEvent"}};
RegisterHandlers(functions);