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

Replace all occurrences of tile_element_is_last_for_tile()

This commit is contained in:
Michael Steenbeek
2018-05-24 11:44:53 +02:00
parent f7a053b5eb
commit b573bd49b3
37 changed files with 311 additions and 315 deletions

View File

@@ -457,7 +457,7 @@ static void viewport_interaction_remove_footpath(rct_tile_element *tileElement,
footpath_remove(x, y, z, GAME_COMMAND_FLAG_APPLY);
break;
}
} while (!tile_element_is_last_for_tile(tileElement2++));
} while (!(tileElement2++)->IsLastForTile());
}
/**