Fix a mistake in a newly added comment

This commit is contained in:
Daniel Trujillo 2016-07-17 17:18:37 +02:00
parent f8aac831ca
commit 68c5f256c5
1 changed files with 1 additions and 1 deletions

View File

@ -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);