MotionMark
MotionMark copied to clipboard
Access the structure's members directly
Do not use the string table to access the structure's members. For example:
this._results[Strings.json.version] = this._version;
can be
this._results.version = this._version;