1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 13:33:02 +01:00

Rename SmallCoords and BigCoords

This commit is contained in:
Michael Steenbeek
2018-02-15 17:42:53 +01:00
parent ab94ea74f4
commit bde913ee16
23 changed files with 114 additions and 114 deletions

View File

@@ -944,7 +944,7 @@ static bool track_design_save_to_td6_for_maze(uint8 rideIndex, rct_track_td6 *td
static bool track_design_save_to_td6_for_tracked_ride(uint8 rideIndex, rct_track_td6 *td6)
{
Ride *ride = get_ride(rideIndex);
BigCoordsXYE trackElement;
CoordsXYE trackElement;
track_begin_end trackBeginEnd;
if (!ride_try_get_origin_element(rideIndex, &trackElement)) {
@@ -958,7 +958,7 @@ static bool track_design_save_to_td6_for_tracked_ride(uint8 rideIndex, rct_track
if (track_block_get_previous(trackElement.x, trackElement.y, trackElement.element, &trackBeginEnd)) {
rct_tile_element* initial_map = trackElement.element;
do {
BigCoordsXYE lastGood = {
CoordsXYE lastGood = {
/* .x = */ trackBeginEnd.begin_x,
/* .y = */ trackBeginEnd.begin_y,
/* .element = */ trackBeginEnd.begin_element