From efcbe87c2899cd2b5c3b394e97500efb49ae229d Mon Sep 17 00:00:00 2001 From: Emmanuel AYME Date: Sun, 22 Feb 2026 11:24:51 +0100 Subject: [PATCH] Fixed an issue where specifying the module name would not be used --- libs/Memory/Memory.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/Memory/Memory.cpp b/libs/Memory/Memory.cpp index 60291c4..4984984 100644 --- a/libs/Memory/Memory.cpp +++ b/libs/Memory/Memory.cpp @@ -145,6 +145,8 @@ uint8_t* Memory::AOBScan( if (_log) _log->warn("Skipping AOB scan because module '{}' is unavailable.", module_name); return nullptr; } + modInfo = modinfo; + found = true; } // Fallback to determine module loaded if (!found || module_name.empty() || module_name == "*") {