notaz.gp2x.de
/
pcsx_rearmed.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a40b4a1
)
drc: forgot to set may_except
author
notaz
<notasas@gmail.com>
Mon, 24 Feb 2025 23:28:47 +0000
(
01:28
+0200)
committer
notaz
<notasas@gmail.com>
Mon, 24 Feb 2025 23:28:47 +0000
(
01:28
+0200)
otherwise unneeded_reg[] thing breaks, can be seen with
Config.PreciseExceptions enabled in some games
libpcsxcore/new_dynarec/new_dynarec.c
patch
|
blob
|
blame
|
history
diff --git
a/libpcsxcore/new_dynarec/new_dynarec.c
b/libpcsxcore/new_dynarec/new_dynarec.c
index
453ceb3
..
0e08aa5
100644
(file)
--- 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;
}