From 00956459d87416a5d103ffec2c93e412e3cd30c5 Mon Sep 17 00:00:00 2001 From: Daniel Trujillo Date: Wed, 13 Jul 2016 18:57:55 +0200 Subject: [PATCH] Fix comments typo --- src/world/map.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/world/map.c b/src/world/map.c index e47b9a32b7..dcd225b7c0 100644 --- a/src/world/map.c +++ b/src/world/map.c @@ -4503,8 +4503,8 @@ void map_extend_boundary_surface() } /** - * Clears the provided element properly from a certain tile, and updates the pointer passed - * to this function to point to the next element. + * 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) { @@ -4572,7 +4572,7 @@ void clear_element_at(int x, int y, rct_map_element **elementPtr) */ static void clear_elements_at(int x, int y) { - // Remove the spawn point (if there is one in the current tile + // Remove the spawn point (if there is one in the current tile) for (int i = 0; i < 2; i++) { rct2_peep_spawn *peepSpawn = &gPeepSpawns[i]; if (floor2(peepSpawn->x, 32) == x && floor2(peepSpawn->y, 32) == y) {