fixed pausing desync issue

This commit is contained in:
Cameron Taylor 2020-12-09 18:14:36 -05:00
parent 5db020d4c9
commit 4e9f76ef6e
6 changed files with 3 additions and 3 deletions

Binary file not shown.

Binary file not shown.

BIN
assets/music/Pico_Inst.ogg Normal file

Binary file not shown.

Binary file not shown.

View File

@ -12,7 +12,7 @@ import lime.utils.Assets;
class FreeplayState extends MusicBeatState
{
var songs:Array<String> = ["Bopeebo", "Dadbattle", "Fresh", "Tutorial"];
var songs:Array<String> = ["Pico", "Bopeebo", "Dadbattle", "Fresh", "Tutorial"];
var selector:FlxText;
var curSelected:Int = 0;

View File

@ -578,9 +578,9 @@ class PlayState extends MusicBeatState
{
if (FlxG.sound.music != null)
{
vocals.time = Conductor.songPosition;
FlxG.sound.music.play();
Conductor.songPosition = FlxG.sound.music.time;
vocals.time = Conductor.songPosition;
vocals.play();
}