Fixed a bug in the 486, WinChip, WinChip 2, Pentium, and 686 timings for the new recompiler.

This commit is contained in:
OBattler
2020-01-14 22:29:07 +01:00
parent 79a10c06b0
commit cbcb53f7ee
5 changed files with 5 additions and 5 deletions

View File

@@ -1136,7 +1136,7 @@ void codegen_timing_pentium_opcode(uint8_t opcode, uint32_t fetchdat, int op_32,
{
case 0x80: case 0x82: case 0x83:
timings = mod3 ? opcode_timings_8x_mod3 : opcode_timings_8x;
deps = mod3 ? opcode_deps_8x_mod3 : opcode_deps_8x_mod3;
deps = mod3 ? opcode_deps_8x_mod3 : opcode_deps_8x;
opcode = (fetchdat >> 3) & 7;
break;
case 0x81: