hook optimization

This commit is contained in:
hyugogirubato 2024-03-31 13:24:18 +02:00
parent a02e3b0daa
commit e5b04e917f
1 changed files with 2 additions and 0 deletions

View File

@ -76,6 +76,8 @@ const hookLibrary = (name) => {
let hookedCount = 0;
functions.forEach((func) => {
if (func.type !== 'function') return;
const funcName = func.name;
const funcAddr = func.address;