From 854df7c347ba635e8e9e64c5acc22e517a87a635 Mon Sep 17 00:00:00 2001 From: GreemDev Date: Sun, 28 Dec 2025 00:51:05 -0600 Subject: [PATCH] consistency --- src/Ryujinx.Graphics.RenderDocApi/RenderDoc.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Ryujinx.Graphics.RenderDocApi/RenderDoc.cs b/src/Ryujinx.Graphics.RenderDocApi/RenderDoc.cs index f49b1b737..4f337528d 100644 --- a/src/Ryujinx.Graphics.RenderDocApi/RenderDoc.cs +++ b/src/Ryujinx.Graphics.RenderDocApi/RenderDoc.cs @@ -160,7 +160,7 @@ namespace Ryujinx.Graphics.RenderDocApi /// specifies which capture option should be retrieved. /// /// the value of the capture option, if the option is a valid enum. - /// Otherwise, returns + /// Otherwise, returns . /// [RenderDocApiVersion(1, 0)] public static int GetCaptureOptionU32(CaptureOption option) => Api->GetCaptureOptionU32(option); @@ -171,7 +171,7 @@ namespace Ryujinx.Graphics.RenderDocApi /// specifies which capture option should be retrieved. /// /// the value of the capture option, if the option is a valid enum. - /// Otherwise, returns - + /// Otherwise, returns -. /// [RenderDocApiVersion(1, 0)] public static float GetCaptureOptionF32(CaptureOption option) => Api->GetCaptureOptionF32(option); @@ -184,7 +184,7 @@ namespace Ryujinx.Graphics.RenderDocApi public static void SetFocusToggleKeys(ReadOnlySpan buttons) { if (Api is null) return; - + fixed (InputButton* ptr = buttons) { Api->SetFocusToggleKeys(ptr, buttons.Length); @@ -199,7 +199,7 @@ namespace Ryujinx.Graphics.RenderDocApi public static void SetCaptureKeys(ReadOnlySpan buttons) { if (Api is null) return; - + fixed (InputButton* ptr = buttons) { Api->SetCaptureKeys(ptr, buttons.Length); @@ -215,7 +215,7 @@ namespace Ryujinx.Graphics.RenderDocApi public static void RemoveHooks() { if (Api is null) return; - + Api->RemoveHooks(); } @@ -228,7 +228,7 @@ namespace Ryujinx.Graphics.RenderDocApi public static void UnloadCrashHandler() { if (Api is null) return; - + Api->UnloadCrashHandler(); } @@ -240,7 +240,7 @@ namespace Ryujinx.Graphics.RenderDocApi public static void TriggerCapture() { if (Api is null) return; - + Api->TriggerCapture(); }