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