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

Rename snake_case functions from localisation folder

This commit is contained in:
Michael Steenbeek
2023-01-17 00:12:35 +01:00
committed by GitHub
parent 8504c8d05e
commit b4480b344e
90 changed files with 335 additions and 336 deletions

View File

@@ -292,7 +292,7 @@ static int32_t ChatHistoryDrawString(
for (int32_t line = 0; line <= numLines; ++line)
{
GfxDrawString(dpi, { screenCoords.x, lineY - (numLines * lineHeight) }, bufferPtr, { TEXT_COLOUR_254 });
bufferPtr = get_string_end(bufferPtr) + 1;
bufferPtr = GetStringEnd(bufferPtr) + 1;
lineY += lineHeight;
}
return lineY - screenCoords.y;
@@ -313,7 +313,7 @@ int32_t ChatStringWrappedGetHeight(void* args, int32_t width)
int32_t lineY = 0;
for (int32_t line = 0; line <= numLines; ++line)
{
bufferPtr = get_string_end(bufferPtr) + 1;
bufferPtr = GetStringEnd(bufferPtr) + 1;
lineY += lineHeight;
}