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

Rename snake_case functions in OpenRCT2/util folder

This commit is contained in:
Hielke Morsink
2023-01-18 22:42:16 +01:00
parent f14d1e3b7e
commit 0762fcb601
75 changed files with 323 additions and 323 deletions

View File

@@ -216,7 +216,7 @@ void ChatAddHistory(std::string_view s)
time(&timer);
auto tmInfo = localtime(&timer);
char timeBuffer[64]{};
strcatftime(timeBuffer, sizeof(timeBuffer), "[%H:%M] ", tmInfo);
StrCatfTime(timeBuffer, sizeof(timeBuffer), "[%H:%M] ", tmInfo);
std::string buffer = timeBuffer;
buffer += s;