1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 16:43:00 +08:00

Remove a pointless portion of the inline comment

This commit is contained in:
Salman Ahmed 2020-09-19 05:54:06 +03:00
parent 6aa84424e4
commit 735b6b0d6f

View File

@ -140,8 +140,7 @@ namespace osu.Game.Skinning
samplesContainer.ChildrenEnumerable = channels.Select(c => new DrawableSample(c)); samplesContainer.ChildrenEnumerable = channels.Select(c => new DrawableSample(c));
// Sample channels have been reloaded to new ones because skin has changed. // Start playback internally for the new samples if the previous ones were playing beforehand.
// Start playback internally for them if they were playing previously.
if (wasPlaying) if (wasPlaying)
play(); play();
} }