spessasynth_core 4.0.12 → 4.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3250,8 +3250,16 @@ var BasicMIDI2 = class _BasicMIDI {
|
|
|
3250
3250
|
parseInternal() {
|
|
3251
3251
|
SpessaSynthGroup("%cInterpreting MIDI events...", consoleColors.info);
|
|
3252
3252
|
let karaokeHasTitle = false;
|
|
3253
|
-
this.
|
|
3253
|
+
this.tempoChanges = [{ ticks: 0, tempo: 120 }];
|
|
3254
3254
|
this.extraMetadata = [];
|
|
3255
|
+
this.lyrics = [];
|
|
3256
|
+
this.firstNoteOn = 0;
|
|
3257
|
+
this.keyRange = { max: 0, min: 127 };
|
|
3258
|
+
this.lastVoiceEventTick = 0;
|
|
3259
|
+
this.portChannelOffsetMap = [0];
|
|
3260
|
+
this.loop = { start: 0, end: 0 };
|
|
3261
|
+
this.isKaraokeFile = false;
|
|
3262
|
+
this.isMultiPort = false;
|
|
3255
3263
|
let nameDetected = false;
|
|
3256
3264
|
if (typeof this.rmidiInfo.name !== "undefined") {
|
|
3257
3265
|
nameDetected = true;
|