diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-05-02 21:38:46 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-05-02 21:38:55 +0200 |
| commit | fa27ddecc5ae8a5e8c049ba78a19a0928e028e28 (patch) | |
| tree | f78732c6a2b444b427e3bb62a51c26b687be1f4d | |
| parent | e5be67b005ddd3b91ac595dd3afdb55a9f454211 (diff) | |
| download | box64-fa27ddecc5ae8a5e8c049ba78a19a0928e028e28.tar.gz box64-fa27ddecc5ae8a5e8c049ba78a19a0928e028e28.zip | |
[TRACE] Remove a trace that might crash when tracing
| -rw-r--r-- | src/emu/x64run_private.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/x64run_private.c b/src/emu/x64run_private.c index 31bf7bb0..2891b04c 100644 --- a/src/emu/x64run_private.c +++ b/src/emu/x64run_private.c @@ -1219,7 +1219,7 @@ void PrintTrace(x64emu_t* emu, uintptr_t ip, int dynarec) } else if(peek==0x57 && rex.b) { printf_log(LOG_NONE, " => STACK_TOP: %p", *(void**)(R_RSP)); printFunctionAddr(ip, "here: "); - } else if((peek==0x55 || peek==0x53) && !is32bits) { + } else if((peek==0x55 /*|| peek==0x53*/) && !is32bits) { if(!printFunctionAddr(*(uintptr_t*)(R_RSP), " STACK_TOP: ")) printf_log(LOG_NONE, " STACK_TOP: %p ", (void*)*(uintptr_t*)(R_RSP)); } else if((peek==0x55 || peek==0x56) && is32bits) { |