GRIM: Post branch merge fixes.

This commit is contained in:
Pawel Kolodziejski 2020-10-07 19:50:27 +02:00
parent 6e619ca714
commit 3d74c3dd4d
12 changed files with 54 additions and 44 deletions

View file

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