From fa27ddecc5ae8a5e8c049ba78a19a0928e028e28 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Thu, 2 May 2024 21:38:46 +0200 Subject: [TRACE] Remove a trace that might crash when tracing --- src/emu/x64run_private.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- cgit 1.4.1