fix wrong col size

This commit is contained in:
Meizar 2025-07-30 21:24:00 +07:00
parent 7bd0a9fe66
commit a00b0c1d41

View file

@ -22,7 +22,7 @@ internal record Coordinate
} }
else if (item >= '0') else if (item >= '0')
{ {
col = col * 10 + (item - '0' + 1); col = col * 10 + (item - '0');
} }
} }