Implement reverb CCs
This commit is contained in:
parent
7e45418d0f
commit
fae1d3c727
7 changed files with 299 additions and 6 deletions
29
reverb.cpp
Normal file
29
reverb.cpp
Normal 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 );
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue