Refresh batch of games, and fix some Steam Cloud transforms

This commit is contained in:
mtkennerly 2024-04-21 12:58:21 -04:00
parent b3a4153c7a
commit d28e78ce81
No known key found for this signature in database
GPG key ID: E764BE00BE6E6408
5 changed files with 37093 additions and 4199 deletions

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -380,6 +380,10 @@ impl Game {
};
for transform in &alt.path_transforms {
if transform.find.is_empty() || transform.replace.is_empty() {
// TODO: How should we handle this?
continue;
}
path = path.replace(&transform.find, &transform.replace);
}