- reserved script space must be nulled.

This commit is contained in:
Christoph Oelckers 2020-05-15 11:58:31 +02:00
parent 693b15a556
commit 5c48d355f1
1 changed files with 1 additions and 1 deletions

View File

@ -399,7 +399,7 @@ static int popscriptvalue()
void reservescriptspace(int space)
{
ScriptCode.Reserve(space);
for (int i = 0; i < space; i++) ScriptCode.Push(0);
}
/*