| 258 | } |
| 259 | |
| 260 | bool CtrlrMidiInputComparatorSingle::cacheMatchSysEx () |
| 261 | { |
| 262 | for (int i=0; i<cacheSysEx.size(); i++) |
| 263 | { |
| 264 | if (compareMemory(cacheSysEx[i].key.toMemoryBlock(), messageContainer.getData())) |
| 265 | { |
| 266 | for (int j=0; j<cacheSysEx[i].mapData.targets.size(); j++) |
| 267 | { |
| 268 | cacheSysEx[i].mapData.targets[j]->getProcessor().setValueFromMIDI (messageContainer); |
| 269 | } |
| 270 | |
| 271 | return (true); |
| 272 | } |
| 273 | } |
| 274 | return (false); |
| 275 | } |
| 276 | |
| 277 | const String CtrlrMidiInputComparatorSingle::dumpTableContents() |
| 278 | { |
nothing calls this directly
no test coverage detected