From 840b5c151fcd207e904fb2a6d3bb3fd658ef6209 Mon Sep 17 00:00:00 2001 From: iamcheeseman Date: Fri, 29 May 2026 22:01:18 -0400 Subject: remove the memory tracker in debug mode for asan --- teensy/teensy_context.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'teensy/teensy_context.c') diff --git a/teensy/teensy_context.c b/teensy/teensy_context.c index 2eb1df3..f401ede 100644 --- a/teensy/teensy_context.c +++ b/teensy/teensy_context.c @@ -21,8 +21,6 @@ bool is_init(void) void ty_init(ty_Hints hints) { - ty_init_mem(); - ctx.hints = hints; ctx.ticrate = 1.0 / hints.ticrate; ctx.prev_tic_ts = 0; @@ -36,7 +34,6 @@ void ty_deinit(void) assert(is_init()); ty_platform_deinit(); ty_deinit_renderer(); - ty_deinit_mem(); } bool ty_button_down(ty_Button btn) -- cgit v1.3-2-g0d8e