1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 22:22:54 +08:00

Fix bracket precedence

This commit is contained in:
Dean Herbert 2019-07-22 18:29:04 +09:00
parent 4c592a5e65
commit 07a0df7c4f

View File

@ -214,7 +214,7 @@ namespace osu.Game.Graphics.Backgrounds
{ {
base.Draw(vertexAction); base.Draw(vertexAction);
if (vertexBatch == null || vertexBatch.Size != Source.AimCount && Source.AimCount > 0) if (Source.AimCount > 0 && (vertexBatch == null || vertexBatch.Size != Source.AimCount))
{ {
vertexBatch?.Dispose(); vertexBatch?.Dispose();
vertexBatch = new TriangleBatch<TexturedVertex2D>(Source.AimCount, 1); vertexBatch = new TriangleBatch<TexturedVertex2D>(Source.AimCount, 1);