mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-12 07:48:16 -05:00
Fix InfoString not properly iterating through gdt entry parents when converting
This commit is contained in:
@ -205,8 +205,8 @@ bool InfoString::FromGdtProperties(const GdtEntry& gdtEntry)
|
|||||||
const auto* currentEntry = &gdtEntry;
|
const auto* currentEntry = &gdtEntry;
|
||||||
while (currentEntry)
|
while (currentEntry)
|
||||||
{
|
{
|
||||||
entryStack.push(&gdtEntry);
|
entryStack.push(currentEntry);
|
||||||
currentEntry = gdtEntry.m_parent;
|
currentEntry = currentEntry->m_parent;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user