1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-27 08:45:00 +01:00

Rename global config functions to use TitleCase

This commit is contained in:
Hielke Morsink
2022-10-16 18:00:03 +02:00
parent f9d1f024c2
commit 5fa53ad528
27 changed files with 143 additions and 143 deletions

View File

@@ -205,10 +205,10 @@ std::unique_ptr<IPlatformEnvironment> OpenRCT2::CreatePlatformEnvironment()
// Now load the config so we can get the RCT1 and RCT2 paths
auto configPath = env->GetFilePath(PATHID::CONFIG);
config_set_defaults();
if (!config_open(configPath))
ConfigSetDefaults();
if (!ConfigOpen(configPath))
{
config_save(configPath);
ConfigSave(configPath);
}
if (gCustomRCT1DataPath.empty())
{