From 230d71ab49b8d9c887bca18964875053ac239492 Mon Sep 17 00:00:00 2001 From: MihailRis Date: Thu, 23 Nov 2023 12:30:51 +0300 Subject: [PATCH] small fix --- src/maths/LMPacker.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/maths/LMPacker.h b/src/maths/LMPacker.h index 98ed6439..78f6c1c5 100644 --- a/src/maths/LMPacker.h +++ b/src/maths/LMPacker.h @@ -10,15 +10,15 @@ #include struct rectangle { + unsigned int idx; int x; int y; int width; int height; int extX = 0; int extY = 0; - uint idx; - rectangle(uint idx, int x, int y, int width, int height) + rectangle(unsigned int idx, int x, int y, int width, int height) : idx(idx), x(x), y(y), width(width), height(height){ } };