1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-03 18:07:53 +01:00

Remove loadsasnakes (#19192)

* Rename snake_case methods in scenario folder

* Rename snake_case methods in title folder

* Rename snake_case methods in object folder

* Rename snake_case methods in platform folder

* Rename snake_case methods in windows folder

* Rename tile_inspector.h to TileInspectorGlobals.h

* Rename snake_case methods in ui/windows folder
This commit is contained in:
Michael Steenbeek
2023-01-17 20:46:55 +01:00
committed by GitHub
parent 31ea968480
commit bb55c6ce66
100 changed files with 605 additions and 607 deletions

View File

@@ -185,7 +185,7 @@ bool ViewportInteractionLeftClick(const ScreenCoordsXY& screenCoords)
case EntityType::Vehicle:
{
auto intent = Intent(WD_VEHICLE);
intent.putExtra(INTENT_EXTRA_VEHICLE, entity);
intent.PutExtra(INTENT_EXTRA_VEHICLE, entity);
ContextOpenIntent(&intent);
break;
}
@@ -193,7 +193,7 @@ bool ViewportInteractionLeftClick(const ScreenCoordsXY& screenCoords)
case EntityType::Staff:
{
auto intent = Intent(WindowClass::Peep);
intent.putExtra(INTENT_EXTRA_PEEP, entity);
intent.PutExtra(INTENT_EXTRA_PEEP, entity);
ContextOpenIntent(&intent);
break;
}
@@ -226,7 +226,7 @@ bool ViewportInteractionLeftClick(const ScreenCoordsXY& screenCoords)
case ViewportInteractionItem::Ride:
{
auto intent = Intent(WD_TRACK);
intent.putExtra(INTENT_EXTRA_TILE_ELEMENT, info.Element);
intent.PutExtra(INTENT_EXTRA_TILE_ELEMENT, info.Element);
ContextOpenIntent(&intent);
return true;
}