1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-17 13:20:05 -06:00
ryujinx/Ryujinx.HLE/HOS/Services/Aud/AudioRenderer/AudioConsts.cs

8 lines
197 B
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
static class AudioConsts
{
public const int HostSampleRate = 48000;
public const int HostChannelsCount = 2;
}
}