mirror of
https://github.com/ppy/osu
synced 2025-01-02 04:12:13 +00:00
Change hash to be lowercase and change sample directories
This commit is contained in:
parent
c0afe4c880
commit
81c392b841
@ -24,7 +24,7 @@ namespace osu.Game.Screens.Menu
|
||||
private void load(AudioManager audio)
|
||||
{
|
||||
if (MenuVoice.Value)
|
||||
welcome = audio.Samples.Get(@"Intro/lazer/welcome");
|
||||
welcome = audio.Samples.Get(@"Intro/welcome");
|
||||
}
|
||||
|
||||
protected override void LogoArriving(OsuLogo logo, bool resuming)
|
||||
|
@ -72,7 +72,7 @@ namespace osu.Game.Screens.Menu
|
||||
MenuVoice = config.GetBindable<bool>(OsuSetting.MenuVoice);
|
||||
MenuMusic = config.GetBindable<bool>(OsuSetting.MenuMusic);
|
||||
|
||||
Seeya = audio.Samples.Get(@"Intro/lazer/seeya");
|
||||
Seeya = audio.Samples.Get(@"Intro/seeya");
|
||||
|
||||
BeatmapSetInfo setInfo = null;
|
||||
|
||||
|
@ -47,7 +47,7 @@ namespace osu.Game.Screens.Menu
|
||||
private void load()
|
||||
{
|
||||
if (MenuVoice.Value && !UsingThemedIntro)
|
||||
welcome = audio.Samples.Get(@"Intro/lazer/welcome");
|
||||
welcome = audio.Samples.Get(@"Intro/welcome");
|
||||
}
|
||||
|
||||
protected override void LogoArriving(OsuLogo logo, bool resuming)
|
||||
|
@ -17,7 +17,7 @@ namespace osu.Game.Screens.Menu
|
||||
{
|
||||
public class IntroWelcome : IntroScreen
|
||||
{
|
||||
protected override string BeatmapHash => "64E00D7022195959BFA3109D09C2E2276C8F12F486B91FCF6175583E973B48F2";
|
||||
protected override string BeatmapHash => "64e00d7022195959bfa3109d09c2e2276c8f12f486b91fcf6175583e973b48f2";
|
||||
protected override string BeatmapFile => "welcome.osz";
|
||||
private const double delay_step_two = 2142;
|
||||
private SampleChannel welcome;
|
||||
|
Loading…
Reference in New Issue
Block a user