From 7b21e266928f10b771bdbb23835410a900ab3587 Mon Sep 17 00:00:00 2001 From: quou Date: Tue, 24 Sep 2024 20:29:39 +1000 Subject: Properly init maths --- 1bitjam.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/1bitjam.c b/1bitjam.c index d573fe1..bd0e21d 100644 --- a/1bitjam.c +++ b/1bitjam.c @@ -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), -- cgit v1.2.3-54-g00ecf