mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-12-02 14:04:14 +01:00
8 lines
258 B
C++
8 lines
258 B
C++
#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); }
|