Editor: Timeline now scales to fit song length

This commit is contained in:
Jenny Crowe
2022-03-09 21:24:06 -07:00
parent 0f80dce062
commit a9c452a5ee
3 changed files with 19 additions and 1 deletions

View File

@ -107,7 +107,8 @@ namespace RhythmHeavenMania.Util
public void Stop()
{
audioSource.Stop();
if (audioSource != null)
audioSource.Stop();
}
public void Delete()