(Mostly) updated verve implementation.

This commit is contained in:
Areloch 2019-03-07 16:23:41 -06:00
parent e0627973fb
commit 5a7f0f0b23
538 changed files with 68727 additions and 49 deletions

View file

@ -2841,6 +2841,10 @@ DefineEngineMethod( SimObject, getFieldValue, const char*, ( const char* fieldNa
const char* arrayIndex = NULL;
const U32 nameLen = dStrlen( fieldName );
if (nameLen == 0)
return "";
if( fieldName[ nameLen - 1 ] == ']' )
{
const char* leftBracket = dStrchr( fieldName, '[' );