mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-13 07:57:51 +00:00
Fixed a typo in FxBoolCast::Emit
This commit is contained in:
parent
73d0ed78fe
commit
01fb2eaecc
1 changed files with 1 additions and 1 deletions
|
@ -414,7 +414,7 @@ ExpEmit FxBoolCast::Emit(VMFunctionBuilder *build)
|
||||||
{
|
{
|
||||||
build->Emit(OP_EQF_K, 1, from.RegNum, build->GetConstantFloat(0.));
|
build->Emit(OP_EQF_K, 1, from.RegNum, build->GetConstantFloat(0.));
|
||||||
}
|
}
|
||||||
else if (from.RegNum == REGT_POINTER)
|
else if (from.RegType == REGT_POINTER)
|
||||||
{
|
{
|
||||||
build->Emit(OP_EQA_K, 1, from.RegNum, build->GetConstantAddress(nullptr, ATAG_GENERIC));
|
build->Emit(OP_EQA_K, 1, from.RegNum, build->GetConstantAddress(nullptr, ATAG_GENERIC));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue