From a95def6dc0e05051eec0157daad35edb4f229df9 Mon Sep 17 00:00:00 2001 From: dbalatoni13 <40299962+dbalatoni13@users.noreply.github.com> Date: Tue, 8 Apr 2025 15:08:40 +0200 Subject: [PATCH] Asan hack --- src/game/main.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/game/main.c b/src/game/main.c index 5424b56b..03394e18 100644 --- a/src/game/main.c +++ b/src/game/main.c @@ -22,6 +22,11 @@ #include #include #include + +const char *__asan_default_options() +{ + return "new_delete_type_mismatch=0,sleep_before_dying=5,allocator_may_return_null=1"; +} #endif extern FileListEntry _ovltbl[];