From bb3c69de0476c909e5ab8b728b17781ad9d8887b Mon Sep 17 00:00:00 2001 From: EvanR Date: Tue, 26 May 2009 15:55:20 -0400 Subject: [PATCH] Bank widget sends controller change 32 instead of 0. This makes more sense but I figured since most of the other CC commonly used were less than 32, so should bank select. Fixed now. --- src/jack.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jack.cpp b/src/jack.cpp index 47601a8..eb04e9b 100644 --- a/src/jack.cpp +++ b/src/jack.cpp @@ -500,7 +500,7 @@ void midi_bank_controller(int track, int bank){ char buf[3]; buf[0] = 0xB0 | chan; - buf[1] = 0; + buf[1] = 32; buf[2] = bank; send_midi(buf, 3, port); } -- 2.11.4.GIT