- fixed: ZScript did not properly fill in tentatively created classes from defaults processing.

The proper setup for such classes was only done in CreateDerivedClass, but not in FindClassTentative itself. This extends CreateDerivedClass to allow it to create a class without fully initializing it.
This commit is contained in:
Christoph Oelckers 2016-11-12 13:09:19 +01:00
commit 479b216c06
4 changed files with 36 additions and 29 deletions

View file

@ -375,7 +375,6 @@ static void DoParse(int lumpnum)
}
PSymbolTable symtable;
symtable.SetName("Global_Node");
ZCCCompiler cc(state, NULL, symtable, GlobalSymbols, lumpnum);
cc.Compile();