mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 23:24:04 +09:00
Invert back-to-front logic
This commit is contained in:
@ -102,7 +102,7 @@ namespace osu.Game.Skinning
|
||||
sampleContainer.Add(Sample = new DrawableSample(ch) { Looping = Looping });
|
||||
|
||||
// Start playback internally for the new sample if the previous one was playing beforehand.
|
||||
if (wasPlaying && !Looping)
|
||||
if (wasPlaying && Looping)
|
||||
Play();
|
||||
}
|
||||
|
||||
|
@ -159,7 +159,7 @@ namespace osu.Game.Skinning
|
||||
samplesContainer.Add(sample);
|
||||
}
|
||||
|
||||
if (wasPlaying && !Looping)
|
||||
if (wasPlaying && Looping)
|
||||
Play();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user