mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-03-24 04:43:49 +00:00
fixed fileparser bug (empty line before the initial begin statement were not handled correctly
This commit is contained in:
parent
592fa84e2d
commit
5a1dd4fedd
@ -75,6 +75,12 @@ namespace Compiler
|
||||
{
|
||||
if (code==Scanner::S_newline)
|
||||
{
|
||||
if (mState==BeginState)
|
||||
{
|
||||
// ignore empty lines
|
||||
return true;
|
||||
}
|
||||
|
||||
if (mState==BeginCompleteState)
|
||||
{
|
||||
// parse the script body
|
||||
|
Loading…
x
Reference in New Issue
Block a user