mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
- Fixed: FxBinaryInts that needed to cast the right-side parameter to an int resolved the left
side instead. SVN r4265 (trunk)
This commit is contained in:
parent
b418f7de8d
commit
504496278b
1 changed files with 1 additions and 1 deletions
|
@ -1246,7 +1246,7 @@ FxExpression *FxBinaryInt::Resolve(FCompileContext& ctx)
|
|||
if (right->ValueType != VAL_Int)
|
||||
{
|
||||
right = new FxIntCast(right);
|
||||
right = left->Resolve(ctx);
|
||||
right = right->Resolve(ctx);
|
||||
}
|
||||
if (left == NULL || right == NULL)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue