diff --git a/imgui.cpp b/imgui.cpp index 7ff6bd02d..0412201ba 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -4656,10 +4656,14 @@ void ImDrawList::ReserveVertices(unsigned int vtx_count) { if (vtx_count > 0) { - ImDrawCmd& draw_cmd = commands.back(); - draw_cmd.vtx_count += vtx_count; - vtx_buffer.resize(vtx_buffer.size() + vtx_count); - vtx_write = &vtx_buffer[vtx_buffer.size() - vtx_count]; + if (!commands.empty()) + { + ImDrawCmd& draw_cmd = commands.back(); + draw_cmd.vtx_count += vtx_count; + } + + vtx_buffer.resize(vtx_buffer.size() + vtx_count); + vtx_write = &vtx_buffer[vtx_buffer.size() - vtx_count]; } }