ZynAddSubFX: fixed commit d61283ad93
Commit d61283ad93 (cherry picked from
official upstream) contained a type which makes compilation of ZASF
plugin fail. Fix this by using correct variable name.
This commit is contained in:
@@ -103,7 +103,7 @@ if ((event==FL_PUSH)||(event==FL_DRAG)||(event==FL_RELEASE)){
|
||||
};
|
||||
};
|
||||
|
||||
if ((keypos!=-1)&&((event==FL_PUSH)||(event==FL_DRAG))&&
|
||||
if ((kpos!=-1)&&((event==FL_PUSH)||(event==FL_DRAG))&&
|
||||
(Fl::event_shift()==0)) {
|
||||
presskey(kpos,1,1);
|
||||
};
|
||||
|
||||
@@ -138,7 +138,7 @@ if ((event==FL_PUSH)||(event==FL_DRAG)||(event==FL_RELEASE)){
|
||||
};
|
||||
};
|
||||
|
||||
if ((keypos!=-1)&&((event==FL_PUSH)||(event==FL_DRAG))&&
|
||||
if ((kpos!=-1)&&((event==FL_PUSH)||(event==FL_DRAG))&&
|
||||
(Fl::event_shift()==0)) {
|
||||
presskey(kpos,1,1);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user