mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Fix CStdMemAlloc:Realloc()
Missing argument mistake.
This commit is contained in:
parent
3b160b6ac6
commit
aa9e7f25ed
@ -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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user