1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 21:43:06 +01:00

Fix comments typo

This commit is contained in:
Daniel Trujillo
2016-07-13 18:57:55 +02:00
parent d8e2dbe045
commit 00956459d8

View File

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