mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-16 19:43:06 +01:00
Rename classes with snakes OpenRCT2/G*-M*
This commit is contained in:
@@ -1395,7 +1395,7 @@ static int32_t ConsoleCommandRemoveFloatingObjects(InteractiveConsole& console,
|
||||
|
||||
static int32_t ConsoleCommandRemoveParkFences(InteractiveConsole& console, [[maybe_unused]] const arguments_t& argv)
|
||||
{
|
||||
tile_element_iterator it;
|
||||
TileElementIterator it;
|
||||
TileElementIteratorBegin(&it);
|
||||
do
|
||||
{
|
||||
@@ -1924,7 +1924,7 @@ static int32_t ConsoleCommandProfilerStop(
|
||||
}
|
||||
|
||||
using console_command_func = int32_t (*)(InteractiveConsole& console, const arguments_t& argv);
|
||||
struct console_command
|
||||
struct ConsoleCommand
|
||||
{
|
||||
const utf8* command;
|
||||
console_command_func func;
|
||||
@@ -1983,7 +1983,7 @@ static constexpr const utf8* console_window_table[] = {
|
||||
};
|
||||
// clang-format on
|
||||
|
||||
static constexpr const console_command console_command_table[] = {
|
||||
static constexpr const ConsoleCommand console_command_table[] = {
|
||||
{ "abort", ConsoleCommandAbort, "Calls std::abort(), for testing purposes only.", "abort" },
|
||||
{ "add_news_item", ConsoleCommandAddNewsItem, "Inserts a news item", "add_news_item [<type> <message> <assoc>]" },
|
||||
{ "assert", ConsoleCommandAssert, "Triggers assertion failure, for testing purposes only", "assert" },
|
||||
|
||||
Reference in New Issue
Block a user