1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-21 14:02:59 +01:00

Refactor object and network constants to kCamelCase

This commit is contained in:
Harry Hopkinson
2024-08-11 21:21:24 +01:00
committed by GitHub
parent 8ebacc1821
commit 4744c7416d
26 changed files with 106 additions and 111 deletions

View File

@@ -763,8 +763,8 @@ private:
void ReportObjectLoadProblem(const RCTObjectEntry* entry)
{
utf8 objName[DAT_NAME_LENGTH + 1] = { 0 };
std::copy_n(entry->name, DAT_NAME_LENGTH, objName);
utf8 objName[kDatNameLength + 1] = { 0 };
std::copy_n(entry->name, kDatNameLength, objName);
Console::Error::WriteLine("[%s] Object could not be loaded.", objName);
}
};