mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-04-29 14:59:26 -04:00
PPCAssembler: Fix incorrect cast sign of branch distance calculate (#555)
This commit is contained in:
parent
dd538d477c
commit
c1afa4cad0
1 changed files with 1 additions and 1 deletions
|
@ -2126,7 +2126,7 @@ bool _ppcAssembler_isConstantBranchTargetExpr(std::string& expressionString, sin
|
|||
{
|
||||
return false;
|
||||
}
|
||||
relativeAddr = (uint32)branchDistance;
|
||||
relativeAddr = (sint32)branchDistance;
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Add table
Reference in a new issue