diff options
| author | iamcheeseman <[email protected]> | 2026-05-29 22:01:18 -0400 |
|---|---|---|
| committer | iamcheeseman <[email protected]> | 2026-05-29 22:01:18 -0400 |
| commit | 840b5c151fcd207e904fb2a6d3bb3fd658ef6209 (patch) | |
| tree | d06c90490f087b2c5ad8a95b292ddfa315f5b70f /teensy/teensy_context.c | |
| parent | a1429f81e3cfb6cefd44ba412d3d5e8f7bc97a71 (diff) | |
remove the memory tracker in debug mode for asan
Diffstat (limited to 'teensy/teensy_context.c')
| -rw-r--r-- | teensy/teensy_context.c | 3 |
1 files changed, 0 insertions, 3 deletions
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) |
