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

Move variable outside of if block

This commit is contained in:
smoogipoo 2019-10-23 17:49:21 +09:00
parent 64682611bb
commit 2c9b11cdfd

View File

@ -217,9 +217,9 @@ namespace osu.Game.Rulesets.Edit
{
distanceSnapGridContainer.Child = distanceSnapGrid;
distanceSnapGridContainer.Show();
lastGridUpdateTime = EditorClock.CurrentTime;
}
lastGridUpdateTime = EditorClock.CurrentTime;
}
private ScheduledDelegate scheduledUpdate;