diff options
author | Ac_K <Acoustik666@gmail.com> | 2020-11-21 21:43:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-21 21:43:36 +0100 |
commit | 3dc9bab91f1ad5094360d581368024b7dfa17d0f (patch) | |
tree | 8cc59d3d2f1da7b42fdfb8d0ad29e69213110339 /Ryujinx.HLE/HOS/Services | |
parent | 57c4e6ef21d1f281b172aedcfd993a2ac43456ef (diff) |
audin: fix wrong id ListAudioInsAuto call (#1737)
Diffstat (limited to 'Ryujinx.HLE/HOS/Services')
-rw-r--r-- | Ryujinx.HLE/HOS/Services/Audio/IAudioInManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Audio/IAudioInManager.cs b/Ryujinx.HLE/HOS/Services/Audio/IAudioInManager.cs index 9b3b951c..3081cd49 100644 --- a/Ryujinx.HLE/HOS/Services/Audio/IAudioInManager.cs +++ b/Ryujinx.HLE/HOS/Services/Audio/IAudioInManager.cs @@ -27,7 +27,7 @@ namespace Ryujinx.HLE.HOS.Services.Audio return ResultCode.Success; } - [Command(3)] // 3.0.0+ + [Command(2)] // 3.0.0+ // ListAudioInsAuto() -> (u32 count, buffer<bytes, 0x22> names) public ResultCode ListAudioInsAuto(ServiceCtx context) { |