mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-02-22 03:41:25 +00:00
Fixed mixins.
This commit is contained in:
parent
2ae3f6d326
commit
583d8faf5c
1 changed files with 7 additions and 2 deletions
|
@ -165,8 +165,13 @@ void ZCCCompiler::ProcessClass(ZCC_Class *cnode, PSymbolTreeNode *treenode)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
origNextNode = node->SiblingNext;
|
if (mixinDef->Body != nullptr)
|
||||||
node = mixinDef->Body;
|
{
|
||||||
|
origNextNode = node->SiblingNext;
|
||||||
|
node = mixinDef->Body;
|
||||||
|
|
||||||
|
continue;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue