1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 13:33:02 +01:00

Mass rename constants (#23656)

This commit is contained in:
Michael Steenbeek
2025-01-19 16:59:45 +01:00
committed by GitHub
parent bf413b2ab7
commit be9f27e4f9
270 changed files with 1636 additions and 1640 deletions

View File

@@ -715,7 +715,7 @@ void ScriptEngine::LoadPlugin(std::shared_ptr<Plugin>& plugin)
if (!plugin->IsLoaded())
{
const auto& metadata = plugin->GetMetadata();
if (metadata.MinApiVersion <= OPENRCT2_PLUGIN_API_VERSION)
if (metadata.MinApiVersion <= kPluginApiVersion)
{
ScriptExecutionInfo::PluginScope scope(_execInfo, plugin, false);
plugin->Load();
@@ -1087,7 +1087,7 @@ GameActions::Result ScriptEngine::QueryOrExecuteCustomGameAction(const CustomAct
}
std::vector<DukValue> pluginCallArgs;
if (customActionInfo.Owner->GetTargetAPIVersion() <= API_VERSION_68_CUSTOM_ACTION_ARGS)
if (customActionInfo.Owner->GetTargetAPIVersion() <= kApiVersionCustomActionArgs)
{
pluginCallArgs = { *dukArgs };
}
@@ -1847,7 +1847,7 @@ int32_t OpenRCT2::Scripting::GetTargetAPIVersion()
if (plugin == nullptr)
{
// For in-game console, default to the current API version
return OPENRCT2_PLUGIN_API_VERSION;
return kPluginApiVersion;
}
return plugin->GetTargetAPIVersion();