From 23170da5a0092c2a9d2d5d0b49da5ee1f53637ac Mon Sep 17 00:00:00 2001 From: Thog Date: Thu, 30 Apr 2020 05:03:05 +0200 Subject: audren: implement Renderer Info output informations (#1179) This implement the rendering information output informations of RequestUpdate. This is needed by some games to keep track of the count of update on the DSP. --- Ryujinx.HLE/Utilities/StructWriter.cs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Ryujinx.HLE/Utilities') diff --git a/Ryujinx.HLE/Utilities/StructWriter.cs b/Ryujinx.HLE/Utilities/StructWriter.cs index b488b5d6..1237746f 100644 --- a/Ryujinx.HLE/Utilities/StructWriter.cs +++ b/Ryujinx.HLE/Utilities/StructWriter.cs @@ -21,5 +21,10 @@ namespace Ryujinx.HLE.Utilities Position += Marshal.SizeOf(); } + + public void SkipBytes(long count) + { + Position += count; + } } } -- cgit v1.2.3