Address all the easy feedback. Some is left.

This commit is contained in:
Henrik Rydgård
2021-05-11 09:50:28 +02:00
parent 8727679353
commit 47039b4bcd
17 changed files with 30 additions and 34 deletions
+1 -2
View File
@@ -1614,13 +1614,12 @@ void Config::changeGameSpecific(const std::string &pGameId, const std::string &t
}
bool Config::createGameConfig(const std::string &pGameId) {
Path fullIniFilePath = Path(getGameConfigFile(pGameId));
Path fullIniFilePath = getGameConfigFile(pGameId);
if (hasGameConfig(pGameId)) {
return false;
}
// TODO(scoped):
File::CreateEmptyFile(fullIniFilePath);
return true;
}