From bb65dd55186cf631b473f53b141fa418bb08cd3c Mon Sep 17 00:00:00 2001 From: robojumper Date: Sun, 5 May 2024 09:30:54 +0200 Subject: [PATCH] Drop comment --- src/nw4r/ut/ut_CharStrmReader.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/nw4r/ut/ut_CharStrmReader.cpp b/src/nw4r/ut/ut_CharStrmReader.cpp index b8f96984..81bb80fa 100644 --- a/src/nw4r/ut/ut_CharStrmReader.cpp +++ b/src/nw4r/ut/ut_CharStrmReader.cpp @@ -5,7 +5,6 @@ namespace ut { namespace { bool IsSJISLeadByte(u8 c) { - // Idk how to force the comparison correctly return ((c >= 0x81) && (c < 0xA0)) || c >= 0xe0; }