1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-30 02:05:13 +01:00

Rename snake_case functions in openrct2/src folder

Co-authored-by: duncanspumpkin <duncans_pumpkin@hotmail.co.uk>
This commit is contained in:
Hielke Morsink
2023-01-17 13:24:51 +01:00
committed by GitHub
parent bf5f7e8e71
commit 6b7dc8fcdb
227 changed files with 1040 additions and 1040 deletions

View File

@@ -333,7 +333,7 @@ TileElement* MapGetFirstElementAt(const TileCoordsXY& tilePos)
{
if (!IsTileLocationValid(tilePos))
{
log_verbose("Trying to access element outside of range");
LOG_VERBOSE("Trying to access element outside of range");
return nullptr;
}
return _tileIndex.GetFirstElementAt(tilePos);
@@ -391,7 +391,7 @@ void MapSetTileElement(const TileCoordsXY& tilePos, TileElement* elements)
{
if (!MapIsLocationValid(tilePos.ToCoordsXY()))
{
log_error("Trying to access element outside of range");
LOG_ERROR("Trying to access element outside of range");
return;
}
_tileIndex.SetTile(tilePos, elements);
@@ -1211,7 +1211,7 @@ static TileElement* AllocateTileElements(size_t numElementsOnTile, size_t numNew
{
if (!MapCheckFreeElementsAndReorganise(numElementsOnTile, numNewElements))
{
log_error("Cannot insert new element");
LOG_ERROR("Cannot insert new element");
return nullptr;
}