Index: trunk/psLib/src/sys/psAssert.h
===================================================================
--- trunk/psLib/src/sys/psAssert.h	(revision 14682)
+++ trunk/psLib/src/sys/psAssert.h	(revision 14982)
@@ -9,5 +9,4 @@
 #include <math.h>
 
-#include "psMemory.h"
 #include "psError.h"
 #include "psLogMsg.h"
@@ -18,15 +17,4 @@
     psError(PS_ERR_PROGRAMMING, false, "Error: %s is not true.", #VAR); \
     return(RVAL); \
-}
-
-// Ensure this is a psLib pointer
-#define PS_ASSERT_PTR(PTR, RVAL) \
-{ \
-    if (PTR && (!psMemIsAlloced(PTR))) { \
-        psError(PS_ERR_MEMORY_CORRUPTION, false, \
-            "Error: Pointer %p is corrupted or not on the PS memory system.", \
-            PTR); \
-        return RVAL; \
-    } \
 }
 
