diff --git a/src/Ryujinx.Graphics.RenderDocApi/RenderDoc.cs b/src/Ryujinx.Graphics.RenderDocApi/RenderDoc.cs
index e5c1b5ca5..600e43f43 100644
--- a/src/Ryujinx.Graphics.RenderDocApi/RenderDoc.cs
+++ b/src/Ryujinx.Graphics.RenderDocApi/RenderDoc.cs
@@ -365,11 +365,11 @@ namespace Ryujinx.Graphics.RenderDocApi
///
/// a handle to the API ‘device’ object that will be set active. May be to wildcard match.
/// a handle to the platform window handle that will be set active. May be to wildcard match.
- /// Requires RenderDoc API version 1.3
- [RenderDocApiVersion(1, 3)]
+ /// Requires RenderDoc API version 1.4
+ [RenderDocApiVersion(1, 4)]
public static void DiscardFrameCapture(nint hDevice, nint hWindow)
{
- AssertAtLeast(1, 3);
+ AssertAtLeast(1, 4);
Api->DiscardFrameCapture((void*)hDevice, (void*)hWindow);
}