2018-07-08 16:42:10 +01:00
|
|
|
namespace Ryujinx.HLE.OsHle.Services.Aud
|
|
|
|
{
|
|
|
|
static class AudErr
|
|
|
|
{
|
|
|
|
public const int DeviceNotFound = 1;
|
2018-07-15 03:57:41 +01:00
|
|
|
public const int UnsupportedRevision = 2;
|
2018-07-08 16:42:10 +01:00
|
|
|
public const int UnsupportedSampleRate = 3;
|
|
|
|
}
|
|
|
|
}
|