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