mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-23 16:17:53 -05:00
Merge branch 'rewrite/master' of github.com:FunkinCrew/Funkin-secret into feature/chart-waveform
This commit is contained in:
commit
81432100b8
2 changed files with 11 additions and 1 deletions
|
@ -568,7 +568,12 @@ class PlayState extends MusicBeatSubState
|
|||
|
||||
// Prepare the Conductor.
|
||||
Conductor.forceBPM(null);
|
||||
|
||||
if (currentChart.offsets != null)
|
||||
{
|
||||
Conductor.instrumentalOffset = currentChart.offsets.getInstrumentalOffset();
|
||||
}
|
||||
|
||||
Conductor.mapTimeChanges(currentChart.timeChanges);
|
||||
Conductor.update((Conductor.beatLengthMs * -5) + startTimestamp);
|
||||
|
||||
|
|
|
@ -92,7 +92,12 @@ class ChartEditorUploadChartDialog extends ChartEditorBaseDialog
|
|||
if (this.locked) return;
|
||||
|
||||
this.lock();
|
||||
// TODO / BUG: File filtering not working on mac finder dialog, so we don't use it for now
|
||||
#if !mac
|
||||
FileUtil.browseForBinaryFile('Open Chart', [FileUtil.FILE_EXTENSION_INFO_FNFC], onSelectFile, onCancelBrowse);
|
||||
#else
|
||||
FileUtil.browseForBinaryFile('Open Chart', null, onSelectFile, onCancelBrowse);
|
||||
#end
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue