diff options
-rw-r--r-- | 1bitjam.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,5 +1,6 @@ #include "asset.h" #include "config.h" +#include "maths.h" #include "memory.h" #include "plat.h" #include "rect.h" @@ -15,6 +16,7 @@ int entrypoint(int argc, const char** argv, Arena* m) { int x = 0, y = 0; (void)argc; (void)argv; + init_maths(); init_heap( &h, arena_alloc(m, app_memory_size), |