Try disable nullptr hack(1)

This commit is contained in:
mittorn 2018-07-30 02:11:30 +07:00
parent 8d75f9404f
commit 3e58eb6f1d

View File

@ -42,11 +42,12 @@ public:
{
return Get() != other.Get();
}
#if 0
bool operator !=(my_nullptr_t &null1)
{
return Get() != (edict_t*)0;
}
#endif
bool operator !=(int null1)
{
return Get() != (edict_t*)null1;