Browse Source

Fix regression on MIDI output

Closes #115

Signed-off-by: falkTX <falktx@falktx.com>
tags/22.02
falkTX 4 years ago
parent
commit
f9b2ec35a0
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      include/midi.hpp

+ 3
- 1
include/midi.hpp View File

@@ -51,7 +51,9 @@ struct Message {
*/
int64_t frame = -1;

Message() {}
Message() {
bytes.resize(3);
}

int getSize() const {
return bytes.size();


Loading…
Cancel
Save