Files
Ryujinx/Ryujinx.HLE/HOS/Services/Aud/AudioRenderer/MemoryPoolContext.cs
2018-12-01 14:38:15 -06:00

13 lines
258 B
C#

namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
internal class MemoryPoolContext
{
public MemoryPoolOut OutStatus;
public MemoryPoolContext()
{
OutStatus.State = MemoryPoolState.Detached;
}
}
}