1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-17 05:10:04 -06:00
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;
}
}
}