diff options
Diffstat (limited to 'core/qmpmidiplay.cpp')
-rw-r--r-- | core/qmpmidiplay.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/qmpmidiplay.cpp b/core/qmpmidiplay.cpp index c24b0c9..4cb5430 100644 --- a/core/qmpmidiplay.cpp +++ b/core/qmpmidiplay.cpp @@ -450,7 +450,7 @@ void CMidiPlayer::setSolo(int ch,bool s) {setBit(solo,ch,s?1:0);} bool CMidiPlayer::getChannelMask(int ch) {return((mute>>ch)&1)||(solo&&!((solo>>ch)&1));} -int CMidiPlayer::getCC(int ch,int id) +uint16_t CMidiPlayer::getCC(int ch,int id) { if(chstatus[ch][id]==0xff) return getChannelOutputDevice(ch)->getInitialCCValue(uint8_t(id),uint8_t(ch)); |