Better audren implementation (#179)

This commit is contained in:
Starlet
2018-06-23 01:00:14 -04:00
committed by gdkchan
parent 3e6afeb513
commit 5182361f4b
5 changed files with 119 additions and 16 deletions

View File

@@ -0,0 +1,13 @@
namespace Ryujinx.HLE.OsHle.Services.Aud
{
enum MemoryPoolStates : int
{
Invalid = 0x0,
Unknown = 0x1,
RequestDetach = 0x2,
Detached = 0x3,
RequestAttach = 0x4,
Attached = 0x5,
Released = 0x6,
}
}