mirror of
https://github.com/OpenMW/openmw.git
synced 2025-03-03 03:39:42 +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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue