From 662db697a772f1084ed7c535446b04a1abe143e6 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Sat, 19 Apr 2025 08:13:31 +0200 Subject: [PATCH] Watch system objects everywhere --- src/analyzer/main.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/analyzer/main.cpp b/src/analyzer/main.cpp index 96fb1a67..353682e4 100644 --- a/src/analyzer/main.cpp +++ b/src/analyzer/main.cpp @@ -56,11 +56,6 @@ namespace void watch_system_objects(windows_emulator& win_emu, const std::set>& modules, const bool cache_logging) { - (void)win_emu; - (void)modules; - (void)cache_logging; - -#ifdef OS_WINDOWS watch_object(win_emu, modules, *win_emu.current_thread().teb, cache_logging); watch_object(win_emu, modules, win_emu.process.peb, cache_logging); watch_object(win_emu, modules, emulator_object{win_emu.emu(), kusd_mmio::address()}, @@ -84,7 +79,6 @@ namespace params_hook = watch_object(win_emu, modules, obj, cache_logging); } }); -#endif } bool read_yes_no_answer()