Fixes warning caused by a missing switch/case. (#2382, #2381)

docking
David Wingrove 6 years ago committed by omar
parent c3ea1748dc
commit 5d7bd2309b

@ -8930,6 +8930,9 @@ void ImGui::LogFinish()
if (!g.LogBuffer.empty())
SetClipboardText(g.LogBuffer.begin());
break;
case ImGuiLogType_None:
IM_ASSERT(0);
break;
}
g.LogEnabled = false;

Loading…
Cancel
Save