cheatSystem.cpp: Fix compiling on non-x86 systems.
This commit is contained in:
parent
4473f5425d
commit
f377bfeb76
|
@ -1017,11 +1017,13 @@ void CHEATS::process(int targetType)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef HAVE_JIT
|
||||||
if(cheatsResetJit)
|
if(cheatsResetJit)
|
||||||
{
|
{
|
||||||
if(CommonSettings.use_jit)
|
if(CommonSettings.use_jit)
|
||||||
arm_jit_reset(true,true);
|
arm_jit_reset(true,true);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void CHEATS::getXXcodeString(CHEATS_LIST list, char *res_buf)
|
void CHEATS::getXXcodeString(CHEATS_LIST list, char *res_buf)
|
||||||
|
|
Loading…
Reference in New Issue