aboutsummaryrefslogtreecommitdiff
path: root/engines/tinsel/heapmem.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/tinsel/heapmem.h')
-rw-r--r--engines/tinsel/heapmem.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/engines/tinsel/heapmem.h b/engines/tinsel/heapmem.h
index 5ebf2e7062..9fbee0d61f 100644
--- a/engines/tinsel/heapmem.h
+++ b/engines/tinsel/heapmem.h
@@ -31,8 +31,6 @@
namespace Tinsel {
-#define NUM_MNODES 192 // the number of memory management nodes (was 128, then 192)
-
struct MEM_NODE {
MEM_NODE *pNext; // link to the next node in the list
MEM_NODE *pPrev; // link to the previous node in the list
@@ -42,8 +40,6 @@ struct MEM_NODE {
int flags; // allocation attributes
};
-// allocation flags for the MemoryAlloc function
-
/*----------------------------------------------------------------------*\
|* Memory Function Prototypes *|