mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-16 01:21:17 +00:00
Fixed mixins.
This commit is contained in:
parent
4e5ffb5db9
commit
7bc42a30be
1 changed files with 7 additions and 2 deletions
|
@ -173,8 +173,13 @@ void ZCCCompiler::ProcessClass(ZCC_Class *cnode, PSymbolTreeNode *treenode)
|
|||
break;
|
||||
}
|
||||
|
||||
origNextNode = node->SiblingNext;
|
||||
node = mixinDef->Body;
|
||||
if (mixinDef->Body != nullptr)
|
||||
{
|
||||
origNextNode = node->SiblingNext;
|
||||
node = mixinDef->Body;
|
||||
|
||||
continue;
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in a new issue