cheatSystem.cpp: Fix compiling on non-x86 systems.

This commit is contained in:
rogerman 2017-08-05 14:07:56 -07:00
parent 4473f5425d
commit f377bfeb76
1 changed files with 15 additions and 13 deletions

View File

@ -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)