1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 08:07:24 +08:00

More proper fix

This commit is contained in:
DrabWeb 2017-03-23 09:05:53 -03:00
parent 3364801221
commit b429d8f1b3

View File

@ -151,7 +151,7 @@ namespace osu.Game.Screens.Play
private const float cube_size = 4;
private const float padding = 2;
public const float WIDTH = cube_size + padding;
public const float HEIGHT = (cube_count * WIDTH) + padding + 1;
public const float HEIGHT = cube_count * WIDTH + padding;
private readonly List<Box> drawableRows = new List<Box>();