From 485705f1cbc9c55f14f4f8337056476aa637b72c Mon Sep 17 00:00:00 2001 From: duncanspumpkin Date: Sun, 15 Nov 2015 10:05:22 +0000 Subject: [PATCH] Fix incorrect parameter type --- src/world/map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world/map.h b/src/world/map.h index e791efb8a9..d2db49fefa 100644 --- a/src/world/map.h +++ b/src/world/map.h @@ -387,7 +387,7 @@ void map_clear_all_elements(); rct_map_element *map_get_large_scenery_segment(int x, int y, int z, int direction, int sequence); bool map_large_scenery_get_origin( int x, int y, int z, int direction, int sequence, - int *outX, int *outY, int *outZ, rct_map_element* outElement + int *outX, int *outY, int *outZ, rct_map_element** outElement ); rct_map_element *map_get_track_element_at(int x, int y, int z);