mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 16:15:43 +00:00
Fix InfoString not properly iterating through gdt entry parents when converting
This commit is contained in:
parent
6acbd0e2be
commit
31407e62e2
@ -205,8 +205,8 @@ bool InfoString::FromGdtProperties(const GdtEntry& gdtEntry)
|
||||
const auto* currentEntry = &gdtEntry;
|
||||
while (currentEntry)
|
||||
{
|
||||
entryStack.push(&gdtEntry);
|
||||
currentEntry = gdtEntry.m_parent;
|
||||
entryStack.push(currentEntry);
|
||||
currentEntry = currentEntry->m_parent;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user