1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-29 01:35:06 +01:00

Remove default value for IParkImporter Load func param skipObjectCheck

This commit is contained in:
mix
2025-04-01 23:30:20 +01:00
parent 751113b8c6
commit 2abc01cc44
3 changed files with 3 additions and 3 deletions

View File

@@ -97,7 +97,7 @@ exitcode_t CommandLine::HandleCommandConvert(CommandLineArgEnumerator* enumerato
try
{
auto importer = ParkImporter::Create(sourcePath);
auto loadResult = importer->Load(sourcePath.c_str());
auto loadResult = importer->Load(sourcePath.c_str(), false);
objManager.LoadObjects(loadResult.RequiredObjects);