From 4dfdba001bdbd3fefad4a152c447edeadb6c4dc5 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Tue, 18 Jun 2024 15:22:52 +0200 Subject: [TRACE] Cosmetic change on ymm printout --- src/emu/x64emu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emu/x64emu.c b/src/emu/x64emu.c index 10507768..227afb55 100644 --- a/src/emu/x64emu.c +++ b/src/emu/x64emu.c @@ -424,7 +424,7 @@ const char* DumpCPURegs(x64emu_t* emu, uintptr_t ip, int is32bits) emu->old_ymm[i].q[0] = emu->ymm[i].q[0]; emu->old_ymm[i].q[1] = emu->ymm[i].q[1]; } else { - sprintf(tmp, "-:%016lx-%016lx", emu->ymm[i].q[1], emu->ymm[i].q[0]); + sprintf(tmp, "-%016lx-%016lx", emu->ymm[i].q[1], emu->ymm[i].q[0]); } strcat(buff, tmp); } -- cgit 1.4.1