mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-24 02:30:53 -05:00
Better audren implementation (#179)
This commit is contained in:
13
Ryujinx.HLE/OsHle/Services/Aud/MemoryPoolStates.cs
Normal file
13
Ryujinx.HLE/OsHle/Services/Aud/MemoryPoolStates.cs
Normal 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,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user