mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 21:07:59 +03:00
Tweaks to script parser messages and pathgrid warnings
This commit is contained in:
parent
5a86554f97
commit
95aa05e41b
6 changed files with 25 additions and 27 deletions
|
@ -422,7 +422,7 @@ namespace Compiler
|
|||
{
|
||||
if (!hasExplicit)
|
||||
{
|
||||
getErrorHandler().warning ("stray explicit reference (ignoring it)", loc);
|
||||
getErrorHandler().warning ("ignoring stray explicit reference", loc);
|
||||
mExplicit.clear();
|
||||
}
|
||||
|
||||
|
@ -791,7 +791,7 @@ namespace Compiler
|
|||
++optionalCount;
|
||||
}
|
||||
else
|
||||
getErrorHandler().warning ("Ignoring extra argument",
|
||||
getErrorHandler().warning ("ignoring extra argument",
|
||||
stringParser.getTokenLoc());
|
||||
}
|
||||
else if (*iter=='X')
|
||||
|
@ -805,7 +805,7 @@ namespace Compiler
|
|||
if (parser.isEmpty())
|
||||
break;
|
||||
else
|
||||
getErrorHandler().warning("Ignoring extra argument", parser.getTokenLoc());
|
||||
getErrorHandler().warning("ignoring extra argument", parser.getTokenLoc());
|
||||
}
|
||||
else if (*iter=='z')
|
||||
{
|
||||
|
@ -817,7 +817,7 @@ namespace Compiler
|
|||
if (discardParser.isEmpty())
|
||||
break;
|
||||
else
|
||||
getErrorHandler().warning("Ignoring extra argument", discardParser.getTokenLoc());
|
||||
getErrorHandler().warning("ignoring extra argument", discardParser.getTokenLoc());
|
||||
}
|
||||
else if (*iter=='j')
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue