logmeow/myimconfig.h

10 lines
168 B
C

#pragma once
#include "log.h"
#define IM_ASSERT_USER_ERROR(expr,msg) do { if (!(expr)) { log(msg); } } while (0);
#ifndef NDEBUG
#define IMGUI_DEBUG_PARANOID
#endif