diff --git a/r5dev/tier0/memstd.h b/r5dev/tier0/memstd.h index 91949f15..f433006d 100644 --- a/r5dev/tier0/memstd.h +++ b/r5dev/tier0/memstd.h @@ -7,7 +7,13 @@ public: template T* Alloc(size_t nSize) { - const int index = 1; + const int index = 0; + return CallVFunc(index, this, nSize); + } + template + T* Realloc(T* pMem, size_t nSize) + { + const int index = 2; return CallVFunc(index, this, nSize); } template