mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-24 13:11:33 +00:00
Fixed uninitialized variable in XLAT parser
https://forum.zdoom.org/viewtopic.php?t=57109
This commit is contained in:
parent
c6351825b8
commit
ac811f99c0
1 changed files with 1 additions and 0 deletions
|
@ -301,6 +301,7 @@ boom_line(A) ::= boom_selector(sel) boom_op(op) boom_args(args).
|
|||
{
|
||||
A.bOrExisting = (op == OR_EQUAL);
|
||||
A.bUseConstant = (args.filters == NULL);
|
||||
A.ListSize = 0;
|
||||
A.ArgNum = sel;
|
||||
A.ConstantValue = args.constant;
|
||||
A.AndValue = args.mask;
|
||||
|
|
Loading…
Reference in a new issue