blob: 675ea8c7c931db7fb6b8c2f0e1b5d7f2b70a4e8a (
plain)
1
2
3
4
5
6
7
8
9
10
|
namespace Ryujinx.HLE.HOS.Services.Aud
{
static class AudErr
{
public const int DeviceNotFound = 1;
public const int UnsupportedRevision = 2;
public const int UnsupportedSampleRate = 3;
public const int OpusInvalidInput = 6;
}
}
|