From 9e8232e97db1cfe9f0f9a69bdfde5048a6290df1 Mon Sep 17 00:00:00 2001 From: BobTheBob <32057864+BobTheBob9@users.noreply.github.com> Date: Fri, 3 Dec 2021 20:55:19 +0000 Subject: slightly awful fix for allocation issues --- NorthstarDedicatedTest/memalloc.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 NorthstarDedicatedTest/memalloc.h (limited to 'NorthstarDedicatedTest/memalloc.h') diff --git a/NorthstarDedicatedTest/memalloc.h b/NorthstarDedicatedTest/memalloc.h new file mode 100644 index 00000000..fe3c5255 --- /dev/null +++ b/NorthstarDedicatedTest/memalloc.h @@ -0,0 +1,6 @@ +#pragma once + +extern size_t g_iStaticAllocated; + +void* operator new(size_t n); +void operator delete(void* p); \ No newline at end of file -- cgit v1.2.3