From 8cea39b5a63b350f7c6334b91b9d7e2b30bd61bf Mon Sep 17 00:00:00 2001
From: ReinUsesLisp <reinuseslisp@airmail.cc>
Date: Sat, 10 Apr 2021 03:52:49 -0300
Subject: [PATCH] shader: Remove outdated comment in F2I

---
 .../translate/impl/floating_point_conversion_integer.cpp      | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/floating_point_conversion_integer.cpp b/src/shader_recompiler/frontend/maxwell/translate/impl/floating_point_conversion_integer.cpp
index 3cb8969506..92b1ce015a 100644
--- a/src/shader_recompiler/frontend/maxwell/translate/impl/floating_point_conversion_integer.cpp
+++ b/src/shader_recompiler/frontend/maxwell/translate/impl/floating_point_conversion_integer.cpp
@@ -142,10 +142,6 @@ void TranslateF2I(TranslatorVisitor& v, u64 insn, const IR::F16F32F64& src_a) {
             throw NotImplementedException("Invalid F2I rounding {}", f2i.rounding.Value());
         }
     }()};
-
-    // TODO: Handle out of bounds conversions.
-    // For example converting F32 65537.0 to U16, the expected value is 0xffff,
-
     const bool is_signed{f2i.is_signed != 0};
     const auto [max_bound, min_bound] = ClampBounds(f2i.dest_format, is_signed);