From 684752e75bdeb58727c2d9b0ff0265d7fcd47de0 Mon Sep 17 00:00:00 2001 From: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Date: Fri, 19 Jan 2024 13:21:39 +0100 Subject: Replace error checks against `size` with `is_empty` --- scene/resources/immediate_mesh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scene/resources/immediate_mesh.cpp') diff --git a/scene/resources/immediate_mesh.cpp b/scene/resources/immediate_mesh.cpp index dde556c264..a51e28c9fe 100644 --- a/scene/resources/immediate_mesh.cpp +++ b/scene/resources/immediate_mesh.cpp @@ -147,7 +147,7 @@ void ImmediateMesh::surface_add_vertex_2d(const Vector2 &p_vertex) { void ImmediateMesh::surface_end() { ERR_FAIL_COND_MSG(!surface_active, "Not creating any surface. Use surface_begin() to do it."); - ERR_FAIL_COND_MSG(!vertices.size(), "No vertices were added, surface can't be created."); + ERR_FAIL_COND_MSG(vertices.is_empty(), "No vertices were added, surface can't be created."); uint64_t format = ARRAY_FORMAT_VERTEX | ARRAY_FLAG_FORMAT_CURRENT_VERSION; -- cgit v1.2.3