Adjusts some of the loading logic, for guiBitmapCtrl mostly, to not try and load ALL image content upfront during client init, improving load times

This commit is contained in:
Areloch 2024-01-07 23:09:41 -06:00
parent d22b7c7121
commit 829cc2b24a
4 changed files with 18 additions and 3 deletions

View file

@ -147,6 +147,8 @@ SimObject* TamlBinaryReader::parseElement( Stream& stream, const U32 versionId )
if ( pSimObject == NULL )
return NULL;
pSimObject->setFilename(mpTaml->getFilePathBuffer());
// Find Taml callbacks.
TamlCallbacks* pCallbacks = dynamic_cast<TamlCallbacks*>( pSimObject );