mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Make sure it only loops for themed intros if true
This commit is contained in:
@ -152,8 +152,10 @@ namespace osu.Game.Screens.Menu
|
|||||||
protected void StartTrack()
|
protected void StartTrack()
|
||||||
{
|
{
|
||||||
// Only start the current track if it is the menu music. A beatmap's track is started when entering the Main Menu.
|
// Only start the current track if it is the menu music. A beatmap's track is started when entering the Main Menu.
|
||||||
if (UsingThemedIntro)
|
if (!UsingThemedIntro)
|
||||||
Track.Restart();
|
return;
|
||||||
|
|
||||||
|
Track.Restart();
|
||||||
if (menuMusicLoop.Value)
|
if (menuMusicLoop.Value)
|
||||||
Track.Looping = true;
|
Track.Looping = true;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user