spessasynth_core 4.0.1 → 4.0.2

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 CHANGED
@@ -14553,7 +14553,11 @@ var DownloadableSoundsArticulation = class _DownloadableSoundsArticulation exten
14553
14553
  this.mode = "dls1";
14554
14554
  while (lart.data.currentIndex < lart.data.length) {
14555
14555
  const art1 = readRIFFChunk(lart.data);
14556
- _DownloadableSoundsArticulation.verifyHeader(art1, "art1");
14556
+ _DownloadableSoundsArticulation.verifyHeader(
14557
+ art1,
14558
+ "art1",
14559
+ "art2"
14560
+ );
14557
14561
  const artData = art1.data;
14558
14562
  const cbSize = readLittleEndianIndexed(artData, 4);
14559
14563
  if (cbSize !== 8) {
@@ -14570,7 +14574,11 @@ var DownloadableSoundsArticulation = class _DownloadableSoundsArticulation exten
14570
14574
  this.mode = "dls2";
14571
14575
  while (lar2.data.currentIndex < lar2.data.length) {
14572
14576
  const art2 = readRIFFChunk(lar2.data);
14573
- _DownloadableSoundsArticulation.verifyHeader(art2, "art2");
14577
+ _DownloadableSoundsArticulation.verifyHeader(
14578
+ art2,
14579
+ "art2",
14580
+ "art1"
14581
+ );
14574
14582
  const artData = art2.data;
14575
14583
  const cbSize = readLittleEndianIndexed(artData, 4);
14576
14584
  if (cbSize !== 8) {