Skip to content

Commit

Permalink
Simplify an if condition after PR dolphin-emu#4078
Browse files Browse the repository at this point in the history
  • Loading branch information
aldelaro5 authored and OrN committed Sep 16, 2016
1 parent 37f79ec commit 5e60c0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/PowerPC/JitCommon/Jit_Util.cpp
Expand Up @@ -350,7 +350,7 @@ void EmuCodeBlock::SafeLoadToReg(X64Reg reg_value, const Gen::OpArg& opAddress,
MOVZX(64, accessSize, reg_value, R(ABI_RETURN));
}

if (!jit->jo.alwaysUseMemFuncs && !slowmem)
if (!slowmem)
{
if (farcode.Enabled())
{
Expand Down

0 comments on commit 5e60c0c

Please sign in to comment.