Fix CStdMemAlloc:Realloc()

Missing argument mistake.
This commit is contained in:
Kawe Mazidjatari 2022-08-12 15:49:26 +02:00
parent 3b160b6ac6
commit aa9e7f25ed

View File

@ -13,8 +13,8 @@ public:
template<typename T> template<typename T>
T* Realloc(T* pMem, size_t nSize) T* Realloc(T* pMem, size_t nSize)
{ {
const int index = 2; const int index = 3;
return CallVFunc<T*>(index, this, nSize); return CallVFunc<T*>(index, this, pMem, nSize);
} }
template<typename T> template<typename T>
void Free(T* pMem) void Free(T* pMem)