Skip to content

Commit 949ee03

Browse files
authored
fix broken obfuscation paths
1 parent eba1a29 commit 949ee03

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Bind/src/Core/Obfuscation/Obfuscation.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ QString Obfuscation::getHeaderFilePath(bool isKernelMode)
6262
{
6363
if (isKernelMode)
6464
{
65-
return PathUtils::getSysCallerKPath() + "/Wrapper/SysK/SysKFunctions.h";
65+
return PathUtils::getSysCallerKPath() + "/Wrapper/include/SysK/SysKFunctions.h";
6666
}
6767
else
6868
{
69-
return PathUtils::getSysCallerPath() + "/Wrapper/Sys/SysFunctions.h";
69+
return PathUtils::getSysCallerPath() + "/Wrapper/include/Sys/SysFunctions.h";
7070
}
7171
}
7272

@@ -876,4 +876,4 @@ bool Obfuscation::updateDefFile(const QString& defPath, const QStringList& obfus
876876

877877
defFile.close();
878878
return true;
879-
}
879+
}

0 commit comments

Comments
 (0)