diff --git a/src/Ryujinx.Graphics.GAL/Format.cs b/src/Ryujinx.Graphics.GAL/Format.cs
index 669bb2ffb7..17c42d2d41 100644
--- a/src/Ryujinx.Graphics.GAL/Format.cs
+++ b/src/Ryujinx.Graphics.GAL/Format.cs
@@ -716,11 +716,11 @@ namespace Ryujinx.Graphics.GAL
/// Checks if the texture format is a float or sRGB color format.
///
///
- /// Does not include normalized formats. Also does not include depth formats.
+ /// Does not include normalized, compressed or depth formats.
/// Float and sRGB formats do not participate in logical operations.
///
- ///
- ///
+ /// Texture format
+ /// True if the format is a float or sRGB color format, false otherwise
public static bool IsFloatOrSrgb(this Format format)
{
switch (format)