1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-09-07 13:56:27 -05:00

Improvements to IAudioOutManager (#232)

* Improvements to IAudioOutManager

* Make implementation private
This commit is contained in:
gdkchan
2018-07-08 12:42:10 -03:00
committed by GitHub
parent af1516a146
commit dc04b5465f
2 changed files with 62 additions and 32 deletions

View File

@@ -0,0 +1,8 @@
namespace Ryujinx.HLE.OsHle.Services.Aud
{
static class AudErr
{
public const int DeviceNotFound = 1;
public const int UnsupportedSampleRate = 3;
}
}