This commit is contained in:
恍兮惚兮 2024-06-16 15:49:23 +08:00
parent 43d7d8d7a3
commit 22be914611

View File

@ -4,12 +4,11 @@ class NeXAS:public ENGINE{
public:
NeXAS(){
check_by=CHECK_BY::FILE_ALL;
check_by_target=check_by_list{L"*.pac",L"Thumbnail.pac"};
// jichi 6/3/2014: AMUSE CRAFT and SOFTPAL
// Selectively insert, so that lstrlenA can still get correct text if failed
//if (Util::CheckFile(L"dll\\resource.dll") && Util::CheckFile(L"dll\\pal.dll") && InsertAmuseCraftHook())
// return true;
is_engine_certain=false;
check_by=CHECK_BY::CUSTOM;
check_by_target=[](){
return (Util::CheckFile(L"*.pac")&&(Util::CheckFile(L"Thumbnail.pac")||Util::CheckFile(L"Thumbnail5.pac")));
};
};
bool attach_function();
};