diff --git a/desmume/src/cheatSystem.cpp b/desmume/src/cheatSystem.cpp index cf1d8ba6e..f6f769b05 100644 --- a/desmume/src/cheatSystem.cpp +++ b/desmume/src/cheatSystem.cpp @@ -1034,7 +1034,10 @@ void CHEATS::process(int targetType) if(cheatsResetJit) { if(CommonSettings.use_jit) - arm_jit_reset(true,true); + { + printf("Cheat code operation potentially not compatible with JIT operations. Resetting JIT...\n"); + arm_jit_reset(true, true); + } } #endif }