aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services
diff options
context:
space:
mode:
authorAc_K <Acoustik666@gmail.com>2020-11-21 21:43:36 +0100
committerGitHub <noreply@github.com>2020-11-21 21:43:36 +0100
commit3dc9bab91f1ad5094360d581368024b7dfa17d0f (patch)
tree8cc59d3d2f1da7b42fdfb8d0ad29e69213110339 /Ryujinx.HLE/HOS/Services
parent57c4e6ef21d1f281b172aedcfd993a2ac43456ef (diff)
audin: fix wrong id ListAudioInsAuto call (#1737)
Diffstat (limited to 'Ryujinx.HLE/HOS/Services')
-rw-r--r--Ryujinx.HLE/HOS/Services/Audio/IAudioInManager.cs2
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)
{