From 5a93462b450d3a26f295fe744ca191ad7712147f Mon Sep 17 00:00:00 2001 From: momo5502 Date: Sun, 13 Apr 2025 18:45:34 +0200 Subject: [PATCH] Print emulator name --- src/analyzer/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/analyzer/main.cpp b/src/analyzer/main.cpp index 646be0d7..6dd04785 100644 --- a/src/analyzer/main.cpp +++ b/src/analyzer/main.cpp @@ -243,6 +243,7 @@ namespace bool run(const analysis_options& options, const std::span args) { const auto win_emu = setup_emulator(options, args); + win_emu->log.log("Using emulator: %s\n", win_emu->emu().get_name().c_str()); (void)&watch_system_objects; watch_system_objects(*win_emu, options.modules, options.concise_logging);