fix wrong col size
This commit is contained in:
parent
7bd0a9fe66
commit
a00b0c1d41
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ internal record Coordinate
|
|||
}
|
||||
else if (item >= '0')
|
||||
{
|
||||
col = col * 10 + (item - '0' + 1);
|
||||
col = col * 10 + (item - '0');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue