MemoryPoolContext.cs 257 B

123456789101112
  1. namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager
  2. {
  3. class MemoryPoolContext
  4. {
  5. public MemoryPoolOut OutStatus;
  6. public MemoryPoolContext()
  7. {
  8. OutStatus.State = MemoryPoolState.Detached;
  9. }
  10. }
  11. }