mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-27 08:45:00 +01:00
Rename snake_case functions in OpenRCT2/util folder
This commit is contained in:
@@ -858,7 +858,7 @@ std::string NetworkBase::GenerateAdvertiseKey()
|
||||
char key[17];
|
||||
for (int32_t i = 0; i < 16; i++)
|
||||
{
|
||||
int32_t hexCharIndex = util_rand() % std::size(hexChars);
|
||||
int32_t hexCharIndex = UtilRand() % std::size(hexChars);
|
||||
key[i] = hexChars[hexCharIndex];
|
||||
}
|
||||
key[std::size(key) - 1] = 0;
|
||||
|
||||
Reference in New Issue
Block a user