Merge pull request #12349 from Kelebek1/return_system_channels_active

Have GetActiveChannelCount return the system channels instead of host device channels
This commit is contained in:
liamwhite
2023-12-18 15:06:16 -05:00
committed by GitHub
5 changed files with 41 additions and 20 deletions

View File

@ -359,7 +359,7 @@ private:
void GetActiveChannelCount(HLERequestContext& ctx) {
const auto& sink{system.AudioCore().GetOutputSink()};
u32 channel_count{sink.GetDeviceChannels()};
u32 channel_count{sink.GetSystemChannels()};
LOG_DEBUG(Service_Audio, "(STUBBED) called. Channels={}", channel_count);