This commit is contained in:
恍兮惚兮 2024-07-26 19:14:32 +08:00
parent d27e1c059f
commit 196995c7d0

View File

@ -864,8 +864,8 @@ void Hooksearchsetting::call(std::set<DWORD> pids, std::wstring reg)
}
wcscpy(sp.boundaryModule, editmodule->text().c_str());
sp.minAddress = std::stoll(editminaddr->text(), nullptr, 16);
sp.maxAddress = std::stoll(editmaxaddr->text(), nullptr, 16);
sp.minAddress = std::stoull(editminaddr->text(), nullptr, 16);
sp.maxAddress = std::stoull(editmaxaddr->text(), nullptr, 16);
sp.padding = spinpadding->getcurr();
realcallsearchhooks(pids, editregex->text(), sp);
};