1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-22 22:34:33 +01:00

Rename track design functions to PascalCase

This commit is contained in:
ζeh Matt
2021-10-28 23:25:10 +03:00
parent f509c75df5
commit 545b01e7e1
6 changed files with 45 additions and 47 deletions

View File

@@ -75,7 +75,7 @@ public:
public:
std::tuple<bool, TrackRepositoryItem> Create(int32_t, const std::string& path) const override
{
auto td6 = track_design_open(path.c_str());
auto td6 = TrackDesignImport(path.c_str());
if (td6 != nullptr)
{
TrackRepositoryItem item;