1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-07 03:12:36 +01:00

rwengine: Remove usused SCMTypeInfoTable

This commit is contained in:
Anonymous Maarten 2017-04-29 01:52:30 +02:00 committed by Daniel Evans
parent 6142e0bf80
commit c5523d6728

View File

@ -182,13 +182,6 @@ struct SCMTypeInfo {
uint8_t size;
};
typedef std::map<SCMType, SCMTypeInfo> SCMTypeInfoTable;
static SCMTypeInfoTable typeData = {
{TInt8, {1}}, {TInt16, {2}}, {TInt32, {4}}, {TGlobal, {2}},
{TLocal, {2}}, {TFloat16, {2}}, {EndOfArgList, {0}},
};
struct SCMOpcodeParameter {
SCMType type;
union {