Fixed entity param changing in hamsandwich (#395)

This commit is contained in:
Artem Golubikhin
2017-01-02 09:38:43 +01:00
committed by Vincent Herbet
parent 615ecdf7f3
commit 6473118b24
+1 -1
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()