cass-dlcm / midi-asm

GNU General Public License v3.0
0 stars 0 forks source link

Add support for longer notes #2

Open cass-dlcm opened 3 years ago

cass-dlcm commented 3 years ago

Right now notes using the noteEvent function have a maximum length of 127 ticks. That's not quite enough for some compositions. I'd like to make it accept a variable-length quantity up to a DWORD in size, and perform validation (by external function) on it.

cass-dlcm commented 3 years ago
cass-dlcm commented 3 years ago

see commit 8fc8570 for changes

cass-dlcm commented 3 years ago

Turns out that I need to add support for VLQs in the note event function that I wrote. Did that in commit d05523f but ran into other issues.