summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKiritoDv <kiritodev01@gmail.com>2025-01-31 22:56:44 -0600
committerKiritoDv <kiritodev01@gmail.com>2025-01-31 22:56:44 -0600
commit41b56564ddb7dd6d490ca27f92e6c62ba6151daf (patch)
tree40e2f9f2f9f125fe029af94a823cb2d992d21c12
parent228bbdc99e5045193198e3933c73c417f355d57b (diff)
Removed GamePool
-rw-r--r--src/port/Engine.h8
1 files changed, 0 insertions, 8 deletions
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)