mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-29 07:20:48 -07:00
13 lines
258 B
C#
13 lines
258 B
C#
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
|
|
{
|
|
internal class MemoryPoolContext
|
|
{
|
|
public MemoryPoolOut OutStatus;
|
|
|
|
public MemoryPoolContext()
|
|
{
|
|
OutStatus.State = MemoryPoolState.Detached;
|
|
}
|
|
}
|
|
}
|