TombEngine/TR5Main/Game/memory/malloc.cpp

17 lines
243 B
C++
Raw Normal View History

#include "framework.h"
#include "malloc.h"
#include "door.h"
char* malloc_buffer;
int malloc_size;
char* malloc_ptr;
int malloc_free;
int malloc_used;
void init_game_malloc() noexcept
{
}
void game_free(void* ptr) noexcept
{
2020-10-11 16:47:36 +02:00
delete[] ptr;
}