Implement reverb CCs

This commit is contained in:
hirsch 2016-06-24 13:06:05 -04:00
parent 7e45418d0f
commit fae1d3c727
7 changed files with 299 additions and 6 deletions

29
reverb.cpp Normal file
View file

@ -0,0 +1,29 @@
#include "reverb.h"
#include "mustang.h"
int
ReverbCC::cc59( int value ) {
return amp->efx_common1( 0x00, 0x0b, REVERB_STATE, value );
}
int
ReverbCC::cc60( int value ) {
return amp->efx_common1( 0x01, 0x0b, REVERB_STATE, value );
}
int
ReverbCC::cc61( int value ) {
return amp->efx_common1( 0x02, 0x0b, REVERB_STATE, value );
}
int
ReverbCC::cc62( int value ) {
return amp->efx_common1( 0x03, 0x0b, REVERB_STATE, value );
}
int
ReverbCC::cc63( int value ) {
return amp->efx_common1( 0x04, 0x0b, REVERB_STATE, value );
}