about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2022-08-10 23:50:09 +0200
committerptitSeb <sebastien.chev@gmail.com>2022-08-10 23:50:09 +0200
commitd90b6b7e51ee84d00543a42411560e5bd40c15a3 (patch)
tree79da8826800e6ed0e8ae406f05ed33a14d74db7d /src
parente3e1ee313b5b4348ae159d96e143f4e87d271fe1 (diff)
downloadbox64-d90b6b7e51ee84d00543a42411560e5bd40c15a3.tar.gz
box64-d90b6b7e51ee84d00543a42411560e5bd40c15a3.zip
Fixed issue with last RIP handling refactor
Diffstat (limited to 'src')
-rwxr-xr-xsrc/emu/x64run.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/x64run.c b/src/emu/x64run.c
index 09a0d4f7..944d790c 100755
--- a/src/emu/x64run.c
+++ b/src/emu/x64run.c
@@ -1218,7 +1218,7 @@ x64emurun:
             }
             break;
         case 0xDD:                      /* x87 opcodes */
-            if(!(RunDD(emu, rex, addr))) {
+            if(!(addr = RunDD(emu, rex, addr))) {
                 unimp = 1;
                 goto fini;
             }