2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-06-28 15:21:57 +00:00

fix: not reallocating IW5 clipMap pInfo from temp block

This commit is contained in:
Jan
2024-03-30 19:18:41 +01:00
parent 89d80ca36a
commit 89074c8601
8 changed files with 107 additions and 17 deletions

View File

@ -327,6 +327,12 @@ class ZoneLoadTemplate::Internal final : BaseTemplate
LINE("")
LINE(MakeCustomActionCall(member->m_type->m_post_load_action.get()))
}
if (member->m_post_load_action)
{
LINE("")
LINE(MakeCustomActionCall(member->m_post_load_action.get()))
}
}
else
{
@ -378,6 +384,12 @@ class ZoneLoadTemplate::Internal final : BaseTemplate
LINE("")
LINE(MakeCustomActionCall(member->m_type->m_post_load_action.get()))
}
if (member->m_post_load_action)
{
LINE("")
LINE(MakeCustomActionCall(member->m_post_load_action.get()))
}
}
else if (computations.IsAfterPartialLoad())
{
@ -424,6 +436,12 @@ class ZoneLoadTemplate::Internal final : BaseTemplate
LINE("")
LINE(MakeCustomActionCall(member->m_type->m_post_load_action.get()))
}
if (member->m_post_load_action)
{
LINE("")
LINE(MakeCustomActionCall(member->m_post_load_action.get()))
}
}
else if (computations.IsAfterPartialLoad())
{
@ -446,6 +464,12 @@ class ZoneLoadTemplate::Internal final : BaseTemplate
LINE("")
LINE(MakeCustomActionCall(member->m_type->m_post_load_action.get()))
}
if (member->m_post_load_action)
{
LINE("")
LINE(MakeCustomActionCall(member->m_post_load_action.get()))
}
}
else
{