Browse Source

Added assert to catch users using Begin/End without a first NewFrame

pull/58/merge
omar 10 years ago
parent
commit
9b5493d1d9
  1. 1
      imgui.cpp

1
imgui.cpp

@ -2038,6 +2038,7 @@ bool ImGui::Begin(const char* name, bool* open, ImVec2 size, float fill_alpha, I
{ {
ImGuiState& g = GImGui; ImGuiState& g = GImGui;
const ImGuiStyle& style = g.Style; const ImGuiStyle& style = g.Style;
IM_ASSERT(g.Initialized); // Forgot to call ImGui::NewFrame()
ImGuiWindow* window = FindWindow(name); ImGuiWindow* window = FindWindow(name);
if (!window) if (!window)

Loading…
Cancel
Save