mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 00:02:56 +08:00
fix naming
This commit is contained in:
parent
275f96791d
commit
2008a7bbec
@ -34,7 +34,7 @@ namespace osu.Game.Rulesets.Mania.Beatmaps
|
|||||||
return ColumnType.Special;
|
return ColumnType.Special;
|
||||||
|
|
||||||
int distanceToEdge = Math.Min(column, (Columns - 1) - column);
|
int distanceToEdge = Math.Min(column, (Columns - 1) - column);
|
||||||
return distanceToEdge % 2 == 1 ? ColumnType.Odd : ColumnType.Even;
|
return distanceToEdge % 2 == 0 ? ColumnType.Odd : ColumnType.Even;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -39,8 +39,8 @@ namespace osu.Game.Rulesets.Mania.UI
|
|||||||
|
|
||||||
private readonly Dictionary<ColumnType, Color4> columnColours = new Dictionary<ColumnType, Color4>
|
private readonly Dictionary<ColumnType, Color4> columnColours = new Dictionary<ColumnType, Color4>
|
||||||
{
|
{
|
||||||
{ ColumnType.Even, new Color4(94, 0, 57, 255) },
|
{ ColumnType.Even, new Color4(6, 84, 0, 255) },
|
||||||
{ ColumnType.Odd, new Color4(6, 84, 0, 255) },
|
{ ColumnType.Odd, new Color4(94, 0, 57, 255) },
|
||||||
{ ColumnType.Special, new Color4(0, 48, 63, 255) }
|
{ ColumnType.Special, new Color4(0, 48, 63, 255) }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user