Remove unnecessary cast

Co-authored-by: NanderTGA <65074195+NanderTGA@users.noreply.github.com>
This commit is contained in:
bluisblu
2025-03-07 21:08:05 -05:00
committed by GitHub
parent 034d297cbd
commit 41f0df617f

View File

@@ -59,7 +59,7 @@ namespace OpenFK
if (col[currentCol][i] == character)
{
ret[pos++] = (char)i;
if (i == (char)0x3E)
if (i == 0x3E)
{
endchar = pos;
}