mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-29 20:50:48 -07:00
9 lines
207 B
C#
9 lines
207 B
C#
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
|
|
{
|
|
internal static class AudioConsts
|
|
{
|
|
public const int HostSampleRate = 48000;
|
|
public const int HostChannelsCount = 2;
|
|
}
|
|
}
|