ALL: Merge ResidualVM

This commit is contained in:
Paweł Kołodziejski 2020-10-09 19:04:07 +02:00
commit 35b9cccbde
1315 changed files with 289278 additions and 146 deletions

View file

@ -109,6 +109,10 @@ static Common::String generatePreferredTarget(const ADGameDescription *desc) {
res = res + "-cd";
}
if (desc->flags & ADGF_REMASTERED) {
res = res + "-remastered";
}
if (desc->platform != Common::kPlatformDOS && desc->platform != Common::kPlatformUnknown && !(desc->flags & ADGF_DROPPLATFORM)) {
res = res + "-" + getPlatformAbbrev(desc->platform);
}