aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryVersion1.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryVersion1.cs')
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryVersion1.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryVersion1.cs b/src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryVersion1.cs
index fa2d3216..2c407670 100644
--- a/src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryVersion1.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryVersion1.cs
@@ -29,22 +29,22 @@ namespace Ryujinx.Audio.Renderer.Server.Performance
/// </summary>
public PerformanceEntryType EntryType;
- public int GetProcessingTime()
+ public readonly int GetProcessingTime()
{
return ProcessingTime;
}
- public int GetProcessingTimeOffset()
+ public readonly int GetProcessingTimeOffset()
{
return 8;
}
- public int GetStartTime()
+ public readonly int GetStartTime()
{
return StartTime;
}
- public int GetStartTimeOffset()
+ public readonly int GetStartTimeOffset()
{
return 4;
}
@@ -59,4 +59,4 @@ namespace Ryujinx.Audio.Renderer.Server.Performance
NodeId = nodeId;
}
}
-} \ No newline at end of file
+}