blob: 2b68c40d52bd360c60c54bed160f18b00bc54a7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
{
class MemoryPoolContext
{
public MemoryPoolOut OutStatus;
public MemoryPoolContext()
{
OutStatus.State = MemoryPoolState.Detached;
}
}
}
|