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();
}