AudErr.cs 286 B

12345678910
  1. namespace Ryujinx.HLE.HOS.Services.Aud
  2. {
  3. static class AudErr
  4. {
  5. public const int DeviceNotFound = 1;
  6. public const int UnsupportedRevision = 2;
  7. public const int UnsupportedSampleRate = 3;
  8. public const int OpusInvalidInput = 6;
  9. }
  10. }