2023-01-07 09:15:21 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "log.h"
|
|
|
|
|
|
|
|
#define IM_ASSERT_USER_ERROR(expr,msg) do { if (!(expr)) { log(msg); } } while (0);
|
2023-01-16 03:44:28 +00:00
|
|
|
|
2023-01-18 16:37:37 +00:00
|
|
|
#ifndef NDEBUG
|
2023-01-16 03:44:28 +00:00
|
|
|
#define IMGUI_DEBUG_PARANOID
|
2023-01-18 16:37:37 +00:00
|
|
|
#endif
|