Fix to the previous commit to only do it when using the recompiler.

This commit is contained in:
OBattler
2020-05-15 07:26:31 +02:00
parent 8997159dde
commit d5114bdf67
2 changed files with 6 additions and 3 deletions

View File

@@ -14,7 +14,8 @@ static int opRDTSC(uint32_t fetchdat)
EAX = tsc & 0xffffffff;
EDX = tsc >> 32;
CLOCK_CYCLES(1);
update_tsc();
if (cpu_use_dynarec)
update_tsc();
return 0;
}