From 8218170b3cd0466028cb90de950c44155782c959 Mon Sep 17 00:00:00 2001 From: Patrick Dawson Date: Mon, 13 Jul 2020 01:39:39 +0200 Subject: [PATCH] Avoid overflow when calculating visible_cells (cherry picked from commit 9e28df22a0195340016f3ec7271a0bd738c0e928) --- scene/resources/world_2d.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/resources/world_2d.cpp b/scene/resources/world_2d.cpp index 13d5c9699f3..0323be62cab 100644 --- a/scene/resources/world_2d.cpp +++ b/scene/resources/world_2d.cpp @@ -228,7 +228,7 @@ struct SpatialIndexer2D { List added; List removed; - int visible_cells = (end.x - begin.x) * (end.y - begin.y); + uint64_t visible_cells = (uint64_t)(end.x - begin.x) * (uint64_t)(end.y - begin.y); if (visible_cells > 10000) {