mirror of https://github.com/cemu-project/Cemu.git
PPCAssembler: Fix incorrect cast sign of branch distance calculate (#555)
This commit is contained in:
parent
dd538d477c
commit
c1afa4cad0
|
@ -2126,7 +2126,7 @@ bool _ppcAssembler_isConstantBranchTargetExpr(std::string& expressionString, sin
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
relativeAddr = (uint32)branchDistance;
|
relativeAddr = (sint32)branchDistance;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue