Add DPT_Int64 type to netprop dumps (bug 5655, r=asherkin).

This commit is contained in:
Nicholas Hastings 2013-03-16 22:57:57 -04:00
parent 14a8f4a728
commit cf0401fea7

View File

@ -263,6 +263,12 @@ const char *GetDTTypeName(int type)
{
return "datatable";
}
#if SOURCE_ENGINE >= SE_ALIENSWARM
case DPT_Int64:
{
return "int64";
}
#endif
default:
{
return NULL;