Enable paranoid asserts

This commit is contained in:
blankie 2023-01-16 10:44:28 +07:00
parent eba472e9b4
commit 5d4b91963c
Signed by: blankie
GPG Key ID: CC15FC822C7F61F5
1 changed files with 2 additions and 0 deletions

View File

@ -3,3 +3,5 @@
#include "log.h"
#define IM_ASSERT_USER_ERROR(expr,msg) do { if (!(expr)) { log(msg); } } while (0);
#define IMGUI_DEBUG_PARANOID