New recompiler: Temporarily disable the recompilation of FPU opcode D9 44, so Blood II's gameplay music works.

This commit is contained in:
OBattler
2025-12-20 20:02:10 +01:00
parent 8d29edee77
commit 430eda39f5

View File

@@ -676,6 +676,9 @@ generate_call:
if ((recomp_op_table == recomp_opcodes) && (opcode == 0x48))
goto codegen_skip;
#endif
/* TODO: Fix the recompilation so Blood II's gameplay music no longer breaks! */
if ((recomp_op_table == recomp_opcodes_d9) && (opcode == 0x44))
goto codegen_skip;
if (in_lock && ((opcode == 0x90) || (opcode == 0xec)))
goto codegen_skip;