mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-05-11 19:09:14 -05:00
Added checks for unpatched XEX and XEXP for game detection (#234)
This commit is contained in:
@@ -201,7 +201,17 @@ static DLC detectDLC(const std::filesystem::path &sourcePath, VirtualFileSystem
|
||||
bool Installer::checkGameInstall(const std::filesystem::path &baseDirectory, std::filesystem::path &modulePath)
|
||||
{
|
||||
modulePath = baseDirectory / PatchedDirectory / GameExecutableFile;
|
||||
return std::filesystem::exists(modulePath);
|
||||
|
||||
if (!std::filesystem::exists(modulePath))
|
||||
return false;
|
||||
|
||||
if (!std::filesystem::exists(baseDirectory / UpdateDirectory / UpdateExecutablePatchFile))
|
||||
return false;
|
||||
|
||||
if (!std::filesystem::exists(baseDirectory / GameDirectory / GameExecutableFile))
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool Installer::checkDLCInstall(const std::filesystem::path &baseDirectory, DLC dlc)
|
||||
|
||||
Reference in New Issue
Block a user