mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-07-01 00:57:56 -05:00
chore: temporarly adjust pointer insertion
This commit is contained in:
@ -403,10 +403,10 @@ namespace
|
||||
|
||||
if (lookupEntry == 0)
|
||||
return nullptr;
|
||||
if (lookupEntry > m_alias_lookup.size())
|
||||
throw InvalidAliasLookupException(lookupEntry - 1, m_alias_lookup.size());
|
||||
if (lookupEntry > m_pointer_redirect_lookup.size())
|
||||
throw InvalidAliasLookupException(lookupEntry - 1, m_pointer_redirect_lookup.size());
|
||||
|
||||
return m_alias_lookup[lookupEntry - 1];
|
||||
return *m_pointer_redirect_lookup[lookupEntry - 1];
|
||||
}
|
||||
|
||||
private:
|
||||
|
Reference in New Issue
Block a user