Skip to content
Permalink
Browse files
Merge pull request #6918 from lioncash/cast
Interpreter_LoadStore: Remove unnecessary cast in lhzx()
  • Loading branch information
leoetlino committed May 20, 2018
2 parents a974c69 + 940f41f commit 5ce1b83
Showing 1 changed file with 1 addition and 1 deletion.
@@ -673,7 +673,7 @@ void Interpreter::lhzux(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))
{

0 comments on commit 5ce1b83

Please sign in to comment.