mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 00:25:44 +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;
|
const auto* currentEntry = &gdtEntry;
|
||||||
while (currentEntry)
|
while (currentEntry)
|
||||||
{
|
{
|
||||||
entryStack.push(&gdtEntry);
|
entryStack.push(currentEntry);
|
||||||
currentEntry = gdtEntry.m_parent;
|
currentEntry = currentEntry->m_parent;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user