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

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

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