Recompiler now handles reset caused by a newly generated codeblock.

This commit is contained in:
TomW 2015-07-12 15:22:58 +01:00
commit 6bc394b4c6
3 changed files with 14 additions and 1 deletions

View file

@ -619,6 +619,7 @@ chdir(pcempath);
}
int resets = 0;
int x86_was_reset = 0;
void resetx86()
{
pclog("x86 reset\n");
@ -655,6 +656,7 @@ void resetx86()
#ifdef DYNAREC
codegen_reset();
#endif
x86_was_reset = 1;
}
void softresetx86()