1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-30 11:36:46 -06:00

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;
}
}