Version 1.74

This commit is contained in:
omar
2019-11-25 18:38:53 +01:00
parent 26d177bc03
commit bdce833636
10 changed files with 17 additions and 19 deletions

View File

@ -1,4 +1,4 @@
// dear imgui, v1.74 WIP
// dear imgui, v1.74
// (internal structures/api)
// You may use this file to debug, understand or extend ImGui features but we don't provide any guarantee of forward compatibility!
@ -156,7 +156,7 @@ extern IMGUI_API ImGuiContext* GImGui; // Current implicit context pointer
#endif
// "Paranoid" Debug Asserts are meant to only be enabled during specific debugging/work, otherwise would slow down the code too much.
#define IMGUI_DEBUG_PARANOID 1
#define IMGUI_DEBUG_PARANOID 0
#if IMGUI_DEBUG_PARANOID
#define IM_ASSERT_PARANOID(_EXPR) IM_ASSERT(_EXPR)
#else