mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-06 18:40:23 +00:00
changed column/row numbering in script compiler error messages from being starting at 0 to starting at 1
This commit is contained in:
parent
6a67aba336
commit
109fbab546
@ -16,7 +16,7 @@ namespace Compiler
|
||||
mStream << "warning ";
|
||||
|
||||
mStream
|
||||
<< "line " << loc.mLine << ", column " << loc.mColumn
|
||||
<< "line " << loc.mLine+1 << ", column " << loc.mColumn+1
|
||||
<< " (" << loc.mLiteral << ")" << std::endl
|
||||
<< " " << message << std::endl;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user