- re-added serialization of treanslations.
- removed more dead code.
This commit is contained in:
parent
e101014432
commit
970c168b13
17 changed files with 56 additions and 164 deletions
|
|
@ -133,9 +133,9 @@ struct FReader
|
|||
return &it->value;
|
||||
}
|
||||
}
|
||||
else if (obj.mObject->IsArray())
|
||||
else if (obj.mObject->IsArray() && obj.mIndex < obj.mObject->Size())
|
||||
{
|
||||
return &obj.mObject[obj.mIndex++];
|
||||
return &(*obj.mObject)[obj.mIndex++];
|
||||
}
|
||||
return nullptr;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue