1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-30 18:25:16 +01:00

Close #19214: Use consistent casing for RC and RCT (#19230)

This commit is contained in:
Michael Steenbeek
2023-01-20 09:19:14 +01:00
committed by GitHub
parent 9deed6d98a
commit cf9aad7885
68 changed files with 2421 additions and 2421 deletions

View File

@@ -518,8 +518,8 @@ namespace ObjectFactory
auto id = Json::GetString(jRoot["id"]);
// HACK Disguise RCT Classic audio as RCT2 audio so asset packs override correctly
if (id == OpenRCT2::Audio::AudioObjectIdentifiers::Rct2cBase)
id = OpenRCT2::Audio::AudioObjectIdentifiers::Rct2Base;
if (id == OpenRCT2::Audio::AudioObjectIdentifiers::RCTCBase)
id = OpenRCT2::Audio::AudioObjectIdentifiers::RCT2Base;
auto version = VersionTuple(Json::GetString(jRoot["version"]));
ObjectEntryDescriptor descriptor;