1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 03:52:19 +02:00

Fixed BfParser::GetIndexAtLine

This commit is contained in:
MineGame159 2022-12-02 17:49:26 +01:00
parent 15dc0f4687
commit ce2a1a4657

View file

@ -465,7 +465,7 @@ int BfParser::GetIndexAtLine(int line)
{
curLine++;
if (line == curLine)
return i;
return i + 1;
}
}