summaryrefslogtreecommitdiffstats
path: root/src/core/re3.cpp
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-11-30 23:44:58 +0100
committeraap <aap@papnet.eu>2020-11-30 23:44:58 +0100
commit4b9fb631fc1b250a1e353da2e319d49371573bcc (patch)
tree216236fc03d050b78296b14b6cbe5d4159bfb28a /src/core/re3.cpp
parentMerge pull request #850 from aap/master (diff)
downloadre3-4b9fb631fc1b250a1e353da2e319d49371573bcc.tar
re3-4b9fb631fc1b250a1e353da2e319d49371573bcc.tar.gz
re3-4b9fb631fc1b250a1e353da2e319d49371573bcc.tar.bz2
re3-4b9fb631fc1b250a1e353da2e319d49371573bcc.tar.lz
re3-4b9fb631fc1b250a1e353da2e319d49371573bcc.tar.xz
re3-4b9fb631fc1b250a1e353da2e319d49371573bcc.tar.zst
re3-4b9fb631fc1b250a1e353da2e319d49371573bcc.zip
Diffstat (limited to '')
-rw-r--r--src/core/re3.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/core/re3.cpp b/src/core/re3.cpp
index ee747218..506b2714 100644
--- a/src/core/re3.cpp
+++ b/src/core/re3.cpp
@@ -29,6 +29,7 @@
#include "Script.h"
#include "postfx.h"
#include "custompipes.h"
+#include "MemoryHeap.h"
#ifdef DONT_TRUST_RECOGNIZED_JOYSTICKS
#include "FileMgr.h"
@@ -383,6 +384,10 @@ SwitchToMission(void)
}
#endif
+#ifdef USE_CUSTOM_ALLOCATOR
+static void ParseHeap(void) { gMainHeap.ParseHeap(); }
+#endif
+
static const char *carnames[] = {
"landstal", "idaho", "stinger", "linerun", "peren", "sentinel", "patriot", "firetruk", "trash", "stretch", "manana", "infernus", "blista", "pony",
"mule", "cheetah", "ambulan", "fbicar", "moonbeam", "esperant", "taxi", "kuruma", "bobcat", "mrwhoop", "bfinject", "corpse", "police", "enforcer",
@@ -565,6 +570,12 @@ DebugMenuPopulate(void)
DebugMenuAddVarBool8("Render", "Don't render Objects", &gbDontRenderObjects, nil);
DebugMenuAddVarBool8("Render", "Don't Render Water", &gbDontRenderWater, nil);
+#ifndef FINAL
+ DebugMenuAddVarBool8("Debug", "Print Memory Usage", &gbPrintMemoryUsage, nil);
+#ifdef USE_CUSTOM_ALLOCATOR
+ DebugMenuAddCmd("Debug", "Parse Heap", ParseHeap);
+#endif
+#endif
DebugMenuAddVarBool8("Debug", "Show cullzone debug stuff", &gbShowCullZoneDebugStuff, nil);
DebugMenuAddVarBool8("Debug", "Disable zone cull", &gbDisableZoneCull, nil);