More code style

This commit is contained in:
timiimit 2023-05-13 01:47:44 +02:00
parent 8cc0c5ad1c
commit 80b6e014f1
2 changed files with 3 additions and 2 deletions

View File

@ -67,7 +67,7 @@ namespace osu.Game.Tests.Visual.Gameplay
{
base.UpdateGraph();
if (base.ColumnCount > 0)
if (ColumnCount > 0)
CreationCount++;
}
}

View File

@ -140,9 +140,10 @@ namespace osu.Game.Screens.Play
// add missing columns
float x = ColumnCount * Column.WIDTH;
while (targetColumnCount > ColumnCount)
{
var column = new Column()
var column = new Column
{
Height = DrawHeight,
LitColour = fillColour,