Browse Source

Try disable nullptr hack(1)

gravgun
mittorn 6 years ago
parent
commit
3e58eb6f1d
  1. 3
      dlls/whandle.h

3
dlls/whandle.h

@ -42,11 +42,12 @@ public: @@ -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;

Loading…
Cancel
Save