Memory Manager - widberg/fmtk GitHub Wiki

FUEL uses MemoryManager_Z to allocate, reallocate, and deallocate memory using malloc, realloc, and free respectively. This class inherits from Hi_MemoryManager_Z, the hardware-independent memory manager, which implements similar functions to those found in the C standard library from scratch. This hardware-independent memory manager is not used in FUEL since all of the virtual functions are overloaded by the PC-specific implementation; however, other games such as Ratatouille do use the hardware-independent memory manager.