From 501e779be43967b90b3ec191157148445d33dcd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Leclercq?= Date: Sun, 13 Aug 2023 18:40:02 +0200 Subject: [PATCH] Fix mistake --- include/Nazara/Math/Rect.inl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/Nazara/Math/Rect.inl b/include/Nazara/Math/Rect.inl index 7b4554ad1..45898f488 100644 --- a/include/Nazara/Math/Rect.inl +++ b/include/Nazara/Math/Rect.inl @@ -254,10 +254,10 @@ namespace Nz constexpr EnumArray> Rect::GetCorners() const { return { - GetCorner(Nz::BoxCorner::LeftBottom), - GetCorner(Nz::BoxCorner::LeftTop), - GetCorner(Nz::BoxCorner::RightBottom), - GetCorner(Nz::BoxCorner::RightTop) + GetCorner(Nz::RectCorner::LeftBottom), + GetCorner(Nz::RectCorner::LeftTop), + GetCorner(Nz::RectCorner::RightBottom), + GetCorner(Nz::RectCorner::RightTop) }; }