Authored by Thomas Rasch

o Renamed RMTileDump to RMLogTile

... ... @@ -97,7 +97,7 @@ RMTileRect RMTileRectRound(RMTileRect rect)
}
// Dump a description of the tile to the console
void RMTileDump(RMTile tile)
void RMLogTile(RMTile tile)
{
printf("Tile at (%d,%d), zoom %hi\n", tile.x, tile.y, tile.zoom);
}
... ...
... ... @@ -74,6 +74,6 @@ uint64_t RMTileKey(RMTile tile);
RMTileRect RMTileRectRound(RMTileRect rect);
/// Dump a description of the tile to the console
void RMTileDump(RMTile tile);
void RMLogTile(RMTile tile);
#endif
... ...