Formatting.

svn-id: r32285
This commit is contained in:
Johannes Schickel 2008-05-26 12:05:55 +00:00
parent f1410d2f72
commit e92fccfdd9

View File

@ -300,7 +300,7 @@ public:
const T& toData(const ScriptValue &value) {
printf("ScriptInterpreter::toData() index = %d; type = %d; max = %d\n", value.value, _data[value.value]->type, _data.size());
assert((uint32)value.value < _data.size());
T* result = _dataCache->load<T>(_scriptFile, _data[value.value]->offset);
T *result = _dataCache->load<T>(_scriptFile, _data[value.value]->offset);
return *result;
}