fix naming

This commit is contained in:
mcendu 2020-03-31 14:03:11 +08:00
parent 275f96791d
commit 2008a7bbec
No known key found for this signature in database
GPG Key ID: FBCD5D45163D6364
2 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ namespace osu.Game.Rulesets.Mania.Beatmaps
return ColumnType.Special;
int distanceToEdge = Math.Min(column, (Columns - 1) - column);
return distanceToEdge % 2 == 1 ? ColumnType.Odd : ColumnType.Even;
return distanceToEdge % 2 == 0 ? ColumnType.Odd : ColumnType.Even;
}
}
}

View File

@ -39,8 +39,8 @@ namespace osu.Game.Rulesets.Mania.UI
private readonly Dictionary<ColumnType, Color4> columnColours = new Dictionary<ColumnType, Color4>
{
{ ColumnType.Even, new Color4(94, 0, 57, 255) },
{ ColumnType.Odd, new Color4(6, 84, 0, 255) },
{ ColumnType.Even, new Color4(6, 84, 0, 255) },
{ ColumnType.Odd, new Color4(94, 0, 57, 255) },
{ ColumnType.Special, new Color4(0, 48, 63, 255) }
};