Minor fixes

This commit is contained in:
SirLynix
2023-08-25 17:14:33 +02:00
parent 5b9f79a554
commit 627400f4f2
3 changed files with 13 additions and 28 deletions

View File

@@ -254,10 +254,10 @@ namespace Nz
constexpr EnumArray<RectCorner, Vector2<T>> Rect<T>::GetCorners() const
{
return {
GetCorner(Nz::RectCorner::LeftBottom),
GetCorner(Nz::RectCorner::LeftTop),
GetCorner(Nz::RectCorner::RightBottom),
GetCorner(Nz::RectCorner::RightTop)
GetCorner(RectCorner::LeftBottom),
GetCorner(RectCorner::LeftTop),
GetCorner(RectCorner::RightBottom),
GetCorner(RectCorner::RightTop)
};
}