AudioConsts.cs 198 B

12345678
  1. namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
  2. {
  3. static class AudioConsts
  4. {
  5. public const int HostSampleRate = 48000;
  6. public const int HostChannelsCount = 2;
  7. }
  8. }