diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-06-18 15:22:52 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-06-18 15:22:52 +0200 |
| commit | 4dfdba001bdbd3fefad4a152c447edeadb6c4dc5 (patch) | |
| tree | bbd9314a782a8943a3857ccf7503277662fa140b /src | |
| parent | 8dbf982ebe934c535a995cd901603b79f7482a2e (diff) | |
| download | box64-4dfdba001bdbd3fefad4a152c447edeadb6c4dc5.tar.gz box64-4dfdba001bdbd3fefad4a152c447edeadb6c4dc5.zip | |
[TRACE] Cosmetic change on ymm printout
Diffstat (limited to 'src')
| -rw-r--r-- | src/emu/x64emu.c | 2 |
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); } |