summaryrefslogtreecommitdiffstats
path: root/src/entities/Dummy.cpp
diff options
context:
space:
mode:
authorFire_Head <Fire-Head@users.noreply.github.com>2019-06-02 23:56:56 +0200
committerGitHub <noreply@github.com>2019-06-02 23:56:56 +0200
commitaa1163ccb2784f618f012ca878e07af54b2e9041 (patch)
tree04a15b6ef8896ad99ba22258c7bdee00c43c7df6 /src/entities/Dummy.cpp
parentgamestates fixed, mpeg now working (diff)
parentadded CPhysical flags from Nick (diff)
downloadre3-aa1163ccb2784f618f012ca878e07af54b2e9041.tar
re3-aa1163ccb2784f618f012ca878e07af54b2e9041.tar.gz
re3-aa1163ccb2784f618f012ca878e07af54b2e9041.tar.bz2
re3-aa1163ccb2784f618f012ca878e07af54b2e9041.tar.lz
re3-aa1163ccb2784f618f012ca878e07af54b2e9041.tar.xz
re3-aa1163ccb2784f618f012ca878e07af54b2e9041.tar.zst
re3-aa1163ccb2784f618f012ca878e07af54b2e9041.zip
Diffstat (limited to 'src/entities/Dummy.cpp')
-rw-r--r--src/entities/Dummy.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/entities/Dummy.cpp b/src/entities/Dummy.cpp
new file mode 100644
index 00000000..a4880175
--- /dev/null
+++ b/src/entities/Dummy.cpp
@@ -0,0 +1,7 @@
+#include "common.h"
+#include "patcher.h"
+#include "Dummy.h"
+#include "Pools.h"
+
+void *CDummy::operator new(size_t sz) { return CPools::GetDummyPool()->New(); }
+void CDummy::operator delete(void *p, size_t sz) { CPools::GetDummyPool()->Delete((CDummy*)p); }