about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-06-18 15:22:52 +0200
committerptitSeb <sebastien.chev@gmail.com>2024-06-18 15:22:52 +0200
commit4dfdba001bdbd3fefad4a152c447edeadb6c4dc5 (patch)
treebbd9314a782a8943a3857ccf7503277662fa140b /src
parent8dbf982ebe934c535a995cd901603b79f7482a2e (diff)
downloadbox64-4dfdba001bdbd3fefad4a152c447edeadb6c4dc5.tar.gz
box64-4dfdba001bdbd3fefad4a152c447edeadb6c4dc5.zip
[TRACE] Cosmetic change on ymm printout
Diffstat (limited to 'src')
-rw-r--r--src/emu/x64emu.c2
1 files changed, 1 insertions, 1 deletions
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);
             }