enabling you to easily accomplish: * MIDI channel filtering (e.g. blocking of specific channels) * MIDI channel multiplication (e.g. send events from channel X to channels X, Y and Z) * MIDI channel rerouting (e.g send events from channel X to channel Y) * And any possible combination thereof WWW: http://open-music-kontrollers.ch/lv2/midi_matrix PR: 221344 Submitted by: Yuri Victorovich (maintainer) Reviewed by: matthew (mentor) Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D12060
11 lines
405 B
C
11 lines
405 B
C
--- pugl/pugl/pugl_x11.c.orig 2017-05-16 21:46:21 UTC
|
|
+++ pugl/pugl/pugl_x11.c
|
|
@@ -648,7 +648,7 @@ puglPasteFromClipboard(PuglView* view, s
|
|
if( (xevent.xselection.selection == impl->clipboard)
|
|
&& (xevent.xselection.target == impl->utf8_string)
|
|
&& (xevent.xselection.property == XA_PRIMARY) ) {
|
|
- ulong nitems, rem;
|
|
+ uint32_t nitems, rem;
|
|
int format;
|
|
uint8_t* data;
|
|
Atom type;
|