Fix formatting rule warnings.

This commit is contained in:
Matthias Mailänder
2024-07-30 21:43:08 +02:00
committed by Gustas
parent 578a9fe457
commit 14ef6b5774
2 changed files with 6 additions and 4 deletions

View File

@@ -25,8 +25,8 @@ namespace OpenRA.Mods.Common.Graphics
static readonly Dictionary<CVec, int> Offset2CornerIndex = new()
{
{ new CVec(0, -1), (int)Corner.TopLeft },
{ new CVec(1, 0), (int)Corner.TopRight },
{ new CVec(0, 1), (int)Corner.BottomRight },
{ new CVec(1, 0), (int)Corner.TopRight },
{ new CVec(0, 1), (int)Corner.BottomRight },
{ new CVec(-1, 0), (int)Corner.BottomLeft },
};