From 289eb2cbb09b49841b632eae1c4aedd5255a7fbf Mon Sep 17 00:00:00 2001 From: momo5502 Date: Sat, 6 Sep 2025 11:12:51 +0200 Subject: [PATCH] Print counts in decimal --- src/analyzer/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/analyzer/main.cpp b/src/analyzer/main.cpp index 7d8e97af..135f7e48 100644 --- a/src/analyzer/main.cpp +++ b/src/analyzer/main.cpp @@ -240,7 +240,7 @@ namespace for (const auto& instruction : instructions) { const auto* mnemonic = cs_insn_name(c.d.get_handle(), instruction); - c.win_emu->log.print(color::white, "%s: %" PRIx64 "\n", mnemonic, count); + c.win_emu->log.print(color::white, "%s: %" PRIu64 "\n", mnemonic, count); } } }