From 8d75f9404f17c6a7fedea45cd89ac5152ce0fd1c Mon Sep 17 00:00:00 2001 From: mittorn Date: Mon, 30 Jul 2018 02:08:37 +0700 Subject: [PATCH] Try disable nullptr hack --- dlls/extdll.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/extdll.h b/dlls/extdll.h index 6ae0fbc0..846ce8e9 100644 --- a/dlls/extdll.h +++ b/dlls/extdll.h @@ -97,6 +97,7 @@ typedef float vec_t; // needed before including progdefs.h #endif // Make NULL null pointer, not null integer +#if 0 #ifdef __cplusplus struct my_nullptr_t { @@ -109,6 +110,6 @@ static my_nullptr_t my_nullptr; #endif #define NULL my_nullptr #endif - +#endif #endif //EXTDLL_H