Skip to content

Commit

Permalink
Patch to fix Import Modulation Bug
Browse files Browse the repository at this point in the history
  • Loading branch information
choptop84 committed Aug 25, 2024
1 parent 711752d commit be0641c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synth/synth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6951,7 +6951,7 @@ export class Song {
if (channelObject["patterns"]) patternObject = channelObject["patterns"][i];
if (patternObject == undefined) continue;

pattern.fromJsonObject(patternObject, this, channel, importedPartsPerBeat, isNoiseChannel, isModChannel, jsonFormat);
pattern.fromJsonObject(patternObject, this, channel, importedPartsPerBeat, isNoiseChannel, isModChannel, format);
}
channel.patterns.length = this.patternsPerChannel;

Expand Down

0 comments on commit be0641c

Please sign in to comment.