From 68c5f256c55cfdc8f724ed40a8a8c4e26fe9289c Mon Sep 17 00:00:00 2001 From: Daniel Trujillo Date: Sun, 17 Jul 2016 17:18:37 +0200 Subject: [PATCH] Fix a mistake in a newly added comment --- src/world/map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world/map.c b/src/world/map.c index 1f1938d5d2..223e9ce9ca 100644 --- a/src/world/map.c +++ b/src/world/map.c @@ -3805,7 +3805,7 @@ void map_element_remove(rct_map_element *mapElement) { // Replace Nth element by (N+1)th element. // This loop will make mapElement point to the old last element position, - // befor copy it to it's new position + // after copy it to it's new position if (!map_element_is_last_for_tile(mapElement)){ do{ *mapElement = *(mapElement + 1);