Ryujinx/Ryujinx.HLE/HOS/Services/Aud/AudErr.cs

9 lines
234 B
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS.Services.Aud
{
static class AudErr
{
public const int DeviceNotFound = 1;
public const int UnsupportedRevision = 2;
public const int UnsupportedSampleRate = 3;
}
}