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 b64751c1af
commit 88af208cdd

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;