diff --git a/src/API.ts b/src/API.ts index c37b005..e05e963 100644 --- a/src/API.ts +++ b/src/API.ts @@ -564,8 +564,8 @@ export class UserAPI { if (channel) { if (this.MidiConnection.lastCCInChannel[channel]) { return this.MidiConnection.lastCCInChannel[channel][control]; - } else return 64; - } else return this.MidiConnection.lastCC[control] || 64; + } else return 0; + } else return this.MidiConnection.lastCC[control] || 0; }; public has_cc = (channel?: number): boolean => {