1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-17 07:44:09 +02:00

Merge pull request #1766 from MineGame159/fix_GetIndexAtLine

Fixed BfParser::GetIndexAtLine
This commit is contained in:
Brian Fiete 2022-12-03 06:41:32 -08:00 committed by GitHub
commit 5894889a8b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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