From 4bf3c88a26c29b45b6fe70a96ab4143ebe9fd2cf Mon Sep 17 00:00:00 2001 From: OBattler Date: Sun, 5 Sep 2021 23:59:52 +0200 Subject: [PATCH] Reverted the peformance "improving" CPU change. --- src/cpu/386_dynarec.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/cpu/386_dynarec.c b/src/cpu/386_dynarec.c index 15c33100d..a030ac915 100644 --- a/src/cpu/386_dynarec.c +++ b/src/cpu/386_dynarec.c @@ -196,9 +196,6 @@ static void prefetch_run(int instr_cycles, int bytes, int modrm, int reads, int { int mem_cycles = reads*cpu_cycles_read + reads_l*cpu_cycles_read_l + writes*cpu_cycles_write + writes_l*cpu_cycles_write_l; - if (is486) - return; - if (instr_cycles < mem_cycles) instr_cycles = mem_cycles;