Index: /branches/jch-memory/psLib/src/sys/psAssert.h
===================================================================
--- /branches/jch-memory/psLib/src/sys/psAssert.h	(revision 10999)
+++ /branches/jch-memory/psLib/src/sys/psAssert.h	(revision 11000)
@@ -14,22 +14,13 @@
 { \
     if (NAME == NULL) return(RVAL); \
-}
-
-#if 0
-
-psMemBlock *mb = (psMemBlock*)(NAME) - 1;
-\
-if (mb->startblock != P_PS_MEMMAGIC || mb->endblock != P_PS_MEMMAGIC || \
-        *(psU32 *)((char *)(mb + 1) + mb->userMemorySize) != P_PS_MEMMAGIC)
-{
-    \
-    psError(PS_ERR_MEMORY_CORRUPTION, false, \
-            "Error: Pointer %s is corrupted or not on the PS memory system.", \
-            #NAME); \
-    return (RVAL); \
-} \
-}
-
-#endif
+    psMemBlock *mb = (psMemBlock*)(NAME) - 1; \
+    if (mb->startblock != P_PS_MEMMAGIC || mb->endblock != P_PS_MEMMAGIC || \
+            *(psU32 *)((char *)(mb + 1) + mb->userMemorySize) != P_PS_MEMMAGIC) { \
+        psError(PS_ERR_MEMORY_CORRUPTION, false, \
+                "Error: Pointer %s is corrupted or not on the PS memory system.", \
+                #NAME); \
+        return (RVAL); \
+    } \
+}
 
 #define PS_ASSERT_INT_UNEQUAL(NAME1, NAME2, RVAL) \
