1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-17 10:52:46 +00:00

Get rid of MemAlloc.

This commit is contained in:
Darryl Pogue
2012-01-21 16:02:20 -08:00
committed by Adam Johnson
parent 72fdf8de32
commit eb946f76a4
5 changed files with 7 additions and 207 deletions

View File

@ -300,7 +300,7 @@ public:
return malloc(size);
}
void * mallocDEBUG (NxU32 size, const char * fileName, int line) {
return MemAlloc(size, 0, fileName, line);
return malloc(size);
}
void * realloc (void * memory, NxU32 size) {
return realloc(memory, size);