From: notaz Date: Mon, 24 Feb 2025 23:28:47 +0000 (+0200) Subject: drc: forgot to set may_except X-Git-Tag: r25~5 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b9fb6d32c78f772ef04eeab35a755444e826756;p=pcsx_rearmed.git drc: forgot to set may_except otherwise unneeded_reg[] thing breaks, can be seen with Config.PreciseExceptions enabled in some games --- diff --git a/libpcsxcore/new_dynarec/new_dynarec.c b/libpcsxcore/new_dynarec/new_dynarec.c index 453ceb31..0e08aa50 100644 --- a/libpcsxcore/new_dynarec/new_dynarec.c +++ b/libpcsxcore/new_dynarec/new_dynarec.c @@ -6667,7 +6667,7 @@ static void force_intcall(int i) memset(&dops[i], 0, sizeof(dops[i])); dops[i].itype = INTCALL; dops[i].rs1 = CCREG; - dops[i].is_exception = 1; + dops[i].is_exception = dops[i].may_except = 1; cinfo[i].ba = -1; }