From 9308a3562498c4f2a71e49ff8b3f1d84e7a6b40a Mon Sep 17 00:00:00 2001 From: The-Little-Wolf <116989599+The-Little-Wolf@users.noreply.github.com> Date: Sat, 26 Apr 2025 19:38:06 -0700 Subject: [PATCH] [XAM/VOICE] - Stub XamVoiceGetMicArrayStatus - Stub XamVoiceGetMicArrayStatus --- src/xenia/kernel/xam/xam_voice.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/xenia/kernel/xam/xam_voice.cc b/src/xenia/kernel/xam/xam_voice.cc index 408a47f48..e1c65b086 100644 --- a/src/xenia/kernel/xam/xam_voice.cc +++ b/src/xenia/kernel/xam/xam_voice.cc @@ -45,6 +45,12 @@ dword_result_t XamVoiceSubmitPacket_entry(lpdword_t unk1, dword_t unk2, } DECLARE_XAM_EXPORT1(XamVoiceSubmitPacket, kNone, kStub); +dword_result_t XamVoiceGetMicArrayStatus_entry() { + // Returning 0 here tells caller mic is not connected + return 0; +} +DECLARE_XAM_EXPORT1(XamVoiceGetMicArrayStatus, kNone, kStub); + } // namespace xam } // namespace kernel } // namespace xe