about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2023-03-30 13:39:46 +0000
committerptitSeb <sebastien.chev@gmail.com>2023-03-30 13:39:46 +0000
commite1a5edefc1d755956cca73927bd01f8520961266 (patch)
treee7bb14634f08181290050a6ad223409d9b14d0c1 /src
parent373c400cc3a8d06487373a62183ca8981b38e752 (diff)
downloadbox64-e1a5edefc1d755956cca73927bd01f8520961266.tar.gz
box64-e1a5edefc1d755956cca73927bd01f8520961266.zip
[DYNAREC] This should make TEST_INTERPRETER foaulty IP output more coherent
Diffstat (limited to 'src')
-rw-r--r--src/emu/x64test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/x64test.c b/src/emu/x64test.c
index 21a5355b..c66073e5 100644
--- a/src/emu/x64test.c
+++ b/src/emu/x64test.c
@@ -24,7 +24,7 @@
 
 void print_banner(x64emu_t* ref)
 {
-    printf_log(LOG_NONE, "Warning, difference between Interpreter and Dynarec in %p\n=======================================\n", (void*)ref->ip.q[0]);
+    printf_log(LOG_NONE, "Warning, difference between Interpreter and Dynarec in %p\n=======================================\n", (void*)ref->old_ip);
     printf_log(LOG_NONE, "DIFF: Dynarec |  Interpreter\n----------------------\n");
 }
 #define BANNER if(!banner) {banner=1; print_banner(ref);}