Fix uninitialised overlap value

scene_man
En Yi 2023-10-08 12:07:04 +08:00
parent 9f3061bae3
commit de29201a41
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ uint8_t find_AABB_overlap(const Vector2 tl1, const Vector2 sz1, const Vector2 tl
// Note that we include one extra pixel for checking // Note that we include one extra pixel for checking
// This avoid overlapping on the border // This avoid overlapping on the border
Vector2 l1, l2; Vector2 l1, l2;
Vector2 tmp; Vector2 tmp = {0,0};
uint8_t overlap_x, overlap_y; uint8_t overlap_x, overlap_y;
l1.x = tl1.x; l1.x = tl1.x;
l1.y = tl1.x + sz1.x; l1.y = tl1.x + sz1.x;