From 5f917139ab4050b9e03edff71ceeb5cff7abd386 Mon Sep 17 00:00:00 2001 From: Bernhard Liebl Date: Sun, 4 Mar 2018 21:19:32 +0100 Subject: [PATCH] Fix uninitialized data in Sprite::_get_rects() --- scene/2d/sprite.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scene/2d/sprite.cpp b/scene/2d/sprite.cpp index 796969be1e4..0dd02a982ce 100644 --- a/scene/2d/sprite.cpp +++ b/scene/2d/sprite.cpp @@ -73,8 +73,8 @@ void Sprite::_get_rects(Rect2 &r_src_rect, Rect2 &r_dst_rect, bool &r_filter_cli s = s / Size2(hframes, vframes); r_src_rect.size = s; - r_src_rect.position.x += float(frame % hframes) * s.x; - r_src_rect.position.y += float(frame / hframes) * s.y; + r_src_rect.position.x = float(frame % hframes) * s.x; + r_src_rect.position.y = float(frame / hframes) * s.y; } Point2 ofs = offset;