- use a local pointer to the current level in FraggleScript parser.

Just to test a few things.
This commit is contained in:
Christoph Oelckers 2019-01-05 08:59:45 +01:00
commit 95995e4aa3
4 changed files with 38 additions and 35 deletions

View file

@ -219,7 +219,7 @@ void DFsScript::ParseScript(char *position)
try
{
FParser parse(this);
FParser parse(&level, this);
parse.Run(position, data, data + len);
}
catch (CFraggleScriptError &err)