diff --git a/src/port/Engine.h b/src/port/Engine.h index 999b7462..628e354a 100644 --- a/src/port/Engine.h +++ b/src/port/Engine.h @@ -3,13 +3,6 @@ #define LOAD_ASSET(path) (path == NULL ? NULL : (GameEngine_OTRSigCheck((const char*) path) ? ResourceGetDataByName((const char*) path) : path)) #define LOAD_ASSET_RAW(path) ResourceGetDataByName((const char*) path) -struct GamePool { - unsigned long chunk; - unsigned long cursor; - unsigned long length; - void* memory; -}; - typedef enum { SF64_VER_US = 0x94F1D5A7, SF64_VER_EU = 0x6EE9ADE7, @@ -56,7 +49,6 @@ class GameEngine { extern "C" void* GameEngine_Malloc(size_t size); - #define memallocn(type, n) (type*) GameEngine_Malloc(sizeof(type) * n) #define memalloc(type) memallocn(type, 1)