mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 06:08:50 +00:00
Merge pull request #6918 from lioncash/cast
Interpreter_LoadStore: Remove unnecessary cast in lhzx()
This commit is contained in:
commit
5ce1b83d97
1 changed files with 1 additions and 1 deletions
|
@ -673,7 +673,7 @@ void Interpreter::lhzux(UGeckoInstruction inst)
|
||||||
|
|
||||||
void Interpreter::lhzx(UGeckoInstruction inst)
|
void Interpreter::lhzx(UGeckoInstruction inst)
|
||||||
{
|
{
|
||||||
const u32 temp = (u32)PowerPC::Read_U16(Helper_Get_EA_X(inst));
|
const u32 temp = PowerPC::Read_U16(Helper_Get_EA_X(inst));
|
||||||
|
|
||||||
if (!(PowerPC::ppcState.Exceptions & EXCEPTION_DSI))
|
if (!(PowerPC::ppcState.Exceptions & EXCEPTION_DSI))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue