mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-26 11:04:15 +01:00
fix pMemoryTop
This commit is contained in:
parent
466eee84e7
commit
28a942735c
@ -3,7 +3,7 @@
|
||||
#include "MemoryMgr.h"
|
||||
|
||||
|
||||
void *pMemoryTop;
|
||||
uint8 *pMemoryTop;
|
||||
|
||||
void
|
||||
InitMemoryMgr(void)
|
||||
@ -42,8 +42,8 @@ MemoryMgrMalloc(size_t size)
|
||||
#else
|
||||
void *mem = malloc(size);
|
||||
#endif
|
||||
if(mem > pMemoryTop)
|
||||
pMemoryTop = mem;
|
||||
if((uint8*)mem + size > pMemoryTop)
|
||||
pMemoryTop = (uint8*)mem + size ;
|
||||
return mem;
|
||||
}
|
||||
|
||||
@ -55,8 +55,8 @@ MemoryMgrRealloc(void *ptr, size_t size)
|
||||
#else
|
||||
void *mem = realloc(ptr, size);
|
||||
#endif
|
||||
if(mem > pMemoryTop)
|
||||
pMemoryTop = mem;
|
||||
if((uint8*)mem + size > pMemoryTop)
|
||||
pMemoryTop = (uint8*)mem + size ;
|
||||
return mem;
|
||||
}
|
||||
|
||||
@ -68,8 +68,8 @@ MemoryMgrCalloc(size_t num, size_t size)
|
||||
#else
|
||||
void *mem = calloc(num, size);
|
||||
#endif
|
||||
if(mem > pMemoryTop)
|
||||
pMemoryTop = mem;
|
||||
if((uint8*)mem + size > pMemoryTop)
|
||||
pMemoryTop = (uint8*)mem + size ;
|
||||
#ifdef FIX_BUGS
|
||||
memset(mem, 0, num*size);
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user