mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-19 15:52:53 +00:00
fix: loaded zone definitions do not set type fastfile if undefined
This commit is contained in:
parent
1fc31b8c44
commit
c245daf56e
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user