| 1741 | } |
| 1742 | |
| 1743 | const char *getData(S32 type, void *dptr, S32 index, const EnumTable *tbl, BitSet32 flag) |
| 1744 | { |
| 1745 | ConsoleBaseType *cbt = ConsoleBaseType::getType(type); |
| 1746 | AssertFatal(cbt, "Con::getData - could not resolve type ID!"); |
| 1747 | return cbt->getData((void *) (((const char *)dptr) + index * cbt->getTypeSize()), tbl, flag); |
| 1748 | } |
| 1749 | |
| 1750 | const char *getFormattedData(S32 type, const char *data, const EnumTable *tbl, BitSet32 flag) |
| 1751 | { |