mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-11 07:18:11 -05:00
fix: loaded zone definitions do not set type fastfile if undefined
This commit is contained in:
@ -157,6 +157,10 @@ class LinkerImpl final : public Linker
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
// If no type was defined explicitly make it fastfile
|
||||
if (zoneDefinition->m_type == ProjectType::NONE)
|
||||
zoneDefinition->m_type = ProjectType::FASTFILE;
|
||||
|
||||
if (!IncludeAdditionalZoneDefinitions(targetName, *zoneDefinition, sourceSearchPath))
|
||||
return nullptr;
|
||||
|
||||
|
Reference in New Issue
Block a user