Update Fizz.h

This commit is contained in:
恍兮惚兮 2024-08-30 01:44:20 +08:00
parent ade8f24169
commit 5fa33f740c

View File

@ -9,17 +9,17 @@ public:
check_by_target = [&]()
{
auto _ = Util::CheckFile(L"data.gsp") && Util::CheckFile(L"Image*.gsp") && Util::CheckFile(L"bgm*.gsp") && Util::CheckFile(L"se.gsp");
if (!_)
return false;
if (Util::CheckFile(L"voice/*.gsp"))
{
typex = 1;
return true;
}
if (wcscmp(processName_lower, L"gsd.exe") == 0)
else
{
typex = 2;
return true;
}
return false;
return true;
};
};
bool attach_function();