Fixed entity param changing in hamsandwich (#395)

This commit is contained in:
Artem Golubikhin 2017-01-02 11:38:43 +03:00 committed by Vincent Herbet
parent 615ecdf7f3
commit 6473118b24

View File

@ -92,7 +92,7 @@ public:
Data(int type, void *ptr) : m_data(ptr), m_index(NULL), m_type(type)
{ /* nothing */ };
Data(int type, void *ptr, int *cptr) : m_data(ptr), m_index(NULL), m_type(type)
Data(int type, void *ptr, int *cptr) : m_data(ptr), m_index(cptr), m_type(type)
{ /* nothing */ };
~Data()