aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Audio/Renderer/Parameter/Sink/CircularBufferParameter.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Audio/Renderer/Parameter/Sink/CircularBufferParameter.cs')
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/Sink/CircularBufferParameter.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/Ryujinx.Audio/Renderer/Parameter/Sink/CircularBufferParameter.cs b/src/Ryujinx.Audio/Renderer/Parameter/Sink/CircularBufferParameter.cs
index 7c02d65f..0d4b276e 100644
--- a/src/Ryujinx.Audio/Renderer/Parameter/Sink/CircularBufferParameter.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/Sink/CircularBufferParameter.cs
@@ -2,7 +2,6 @@ using Ryujinx.Audio.Common;
using Ryujinx.Audio.Renderer.Common;
using Ryujinx.Common.Memory;
using System.Runtime.InteropServices;
-
using CpuAddress = System.UInt64;
namespace Ryujinx.Audio.Renderer.Parameter.Sink
@@ -41,7 +40,7 @@ namespace Ryujinx.Audio.Renderer.Parameter.Sink
/// <summary>
/// The target <see cref="SampleFormat"/>.
/// </summary>
- /// <remarks>Only <see cref="SampleFormat.PcmInt16"/> is supported.</remarks>
+ /// <remarks>Only <see cref="Audio.Common.SampleFormat.PcmInt16"/> is supported.</remarks>
public SampleFormat SampleFormat;
/// <summary>
@@ -57,6 +56,6 @@ namespace Ryujinx.Audio.Renderer.Parameter.Sink
/// <summary>
/// Reserved/padding.
/// </summary>
- private ushort _reserved2;
+ private readonly ushort _reserved2;
}
-} \ No newline at end of file
+}