1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 05:23:04 +01:00

Make clear_element_at() static.

This commit is contained in:
Daniel Trujillo
2016-07-13 19:15:50 +02:00
parent 00956459d8
commit 0a6fcce92e

View File

@@ -4506,7 +4506,7 @@ void map_extend_boundary_surface()
* Clears the provided element properly from a certain tile, and updates
* the pointer (when needed) passed to this function to point to the next element.
*/
void clear_element_at(int x, int y, rct_map_element **elementPtr)
static void clear_element_at(int x, int y, rct_map_element **elementPtr)
{
rct_map_element *element = *elementPtr;
switch (map_element_get_type(element)) {