mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-24 07:14:31 +01:00
Rename String methods to use lowerCamelCase
This commit is contained in:
@@ -74,7 +74,7 @@ namespace OpenRCT2::Guard
|
||||
std::string formattedMessage;
|
||||
if (message != nullptr)
|
||||
{
|
||||
formattedMessage = String::Format_VA(message, args);
|
||||
formattedMessage = String::formatVA(message, args);
|
||||
Console::Error::WriteLine(formattedMessage.c_str());
|
||||
_lastAssertMessage = std::make_optional(formattedMessage);
|
||||
}
|
||||
@@ -139,7 +139,7 @@ namespace OpenRCT2::Guard
|
||||
sb.Append("\n");
|
||||
sb.Append(formattedMessage);
|
||||
}
|
||||
return String::ToWideChar({ sb.GetBuffer(), sb.GetLength() });
|
||||
return String::toWideChar({ sb.GetBuffer(), sb.GetLength() });
|
||||
}
|
||||
|
||||
static void ForceCrash()
|
||||
|
||||
Reference in New Issue
Block a user