mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 22:40:47 -07:00
10 lines
295 B
C#
10 lines
295 B
C#
namespace Ryujinx.HLE.HOS.Services.Aud
|
|
{
|
|
internal static class AudErr
|
|
{
|
|
public const int DeviceNotFound = 1;
|
|
public const int UnsupportedRevision = 2;
|
|
public const int UnsupportedSampleRate = 3;
|
|
public const int OpusInvalidInput = 6;
|
|
}
|
|
} |