Ryujinx/Ryujinx.HLE/HOS/Services/Audio/AudioRendererManager/MemoryPoolContext.cs

12 lines
257 B
C#
Raw Normal View History

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