mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-22 18:31:59 -05:00
Improve function names
This commit is contained in:
parent
f019aa5db5
commit
b5505c9fc9
1 changed files with 6 additions and 6 deletions
|
@ -1588,10 +1588,10 @@ private:
|
|||
|
||||
void ImportMapElements()
|
||||
{
|
||||
memcpy(gMapElements, _s4.map_elements, RCT1_MAX_MAP_ELEMENTS * sizeof(rct_map_element));
|
||||
Memory::Copy(gMapElements, _s4.map_elements, RCT1_MAX_MAP_ELEMENTS * sizeof(rct_map_element));
|
||||
ClearExtraTileEntries();
|
||||
FixColours();
|
||||
FixZ();
|
||||
FixSceneryColours();
|
||||
FixMapElementZ();
|
||||
FixPaths();
|
||||
FixWalls();
|
||||
FixBanners();
|
||||
|
@ -1816,7 +1816,7 @@ private:
|
|||
dst->Ticks = src->Ticks;
|
||||
dst->MonthYear = src->MonthYear;
|
||||
dst->Day = src->Day;
|
||||
memcpy(dst->Text, src->Text, sizeof(src->Text));
|
||||
Memory::Copy(dst->Text, src->Text, sizeof(src->Text));
|
||||
}
|
||||
|
||||
// Initial guest status
|
||||
|
@ -1968,7 +1968,7 @@ private:
|
|||
gNextFreeMapElement = nextFreeMapElement;
|
||||
}
|
||||
|
||||
void FixColours()
|
||||
void FixSceneryColours()
|
||||
{
|
||||
colour_t colour;
|
||||
rct_map_element * mapElement = gMapElements;
|
||||
|
@ -2018,7 +2018,7 @@ private:
|
|||
}
|
||||
}
|
||||
|
||||
void FixZ()
|
||||
void FixMapElementZ()
|
||||
{
|
||||
rct_map_element * mapElement = gMapElements;
|
||||
while (mapElement < gNextFreeMapElement)
|
||||
|
|
Loading…
Reference in a new issue