aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/OsHle/Services/Aud/AudioRenderer/MemoryPoolContext.cs
blob: b7af1d3f82b0eca7c5137f8da597f0b84e665ea7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Ryujinx.HLE.OsHle.Services.Aud.AudioRenderer
{
    class MemoryPoolContext
    {
        public MemoryPoolOut OutStatus;

        public MemoryPoolContext()
        {
            OutStatus.State = MemoryPoolState.Detached;
        }
    }
}