mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
return preview instead of nothing if it exists already
allows listening to it again after reaching the end
This commit is contained in:
@ -150,7 +150,12 @@ namespace osu.Game.Overlays.Direct
|
||||
|
||||
private void beginAudioLoad()
|
||||
{
|
||||
if (trackLoader != null) return;
|
||||
if (trackLoader != null)
|
||||
{
|
||||
Preview = trackLoader.Preview;
|
||||
Playing.TriggerChange();
|
||||
return;
|
||||
}
|
||||
|
||||
loading = true;
|
||||
|
||||
|
Reference in New Issue
Block a user