From 94687d73fe5976b1265af106b6116922f3a4ef53 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Sun, 10 Aug 2025 11:18:05 +0200 Subject: [PATCH] Small fixes --- src/analyzer/analysis.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/analyzer/analysis.cpp b/src/analyzer/analysis.cpp index a8944573..9f3a7d09 100644 --- a/src/analyzer/analysis.cpp +++ b/src/analyzer/analysis.cpp @@ -54,7 +54,7 @@ namespace void handle_memory_allocate(const analysis_context& c, const uint64_t address, const uint64_t length, const memory_permission permission, const bool commit) { - const auto* action = commit ? "Committed" : "Allocated"; + const auto* action = commit ? "Committed" : "Allocating"; c.win_emu->log.print(is_executable(permission) ? color::gray : color::dark_gray, "--> %s 0x%" PRIx64 " - 0x%" PRIx64 " (%s)\n", action, address, address + length, @@ -170,6 +170,11 @@ namespace print_module_name(*c.win_emu, 0); print_arg_as_string(*c.win_emu, 1); } + else if (function == "lstrcmpi") + { + print_arg_as_string(*c.win_emu, 0); + print_arg_as_string(*c.win_emu, 1); + } } bool is_thread_alive(const analysis_context& c, const uint32_t thread_id)