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

Small path additions cleanup (#20076)

* Split off path addition paint calls

* Replace occurences of “path bit” with “path addition”

* Replace occurences of “footpath item“ with “path addition”
This commit is contained in:
Michael Steenbeek
2023-05-09 21:08:25 +02:00
committed by GitHub
parent 8c165dd455
commit 58baa85a27
34 changed files with 459 additions and 408 deletions

View File

@@ -90,7 +90,7 @@ static std::optional<uint8_t> GetSceneryType(const ObjectType type)
return SCENERY_TYPE_WALL;
case ObjectType::Banners:
return SCENERY_TYPE_BANNER;
case ObjectType::PathBits:
case ObjectType::PathAdditions:
return SCENERY_TYPE_PATH_ITEM;
default:
return std::nullopt;