mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-11 07:18:11 -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;
|
||||
while (currentEntry)
|
||||
{
|
||||
entryStack.push(&gdtEntry);
|
||||
currentEntry = gdtEntry.m_parent;
|
||||
entryStack.push(currentEntry);
|
||||
currentEntry = currentEntry->m_parent;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user