Add more V2 models to test. Add control of bright switch

This commit is contained in:
hirsch 2016-09-03 09:04:31 -04:00
parent b221c2fdce
commit b7ab9d0c46
3 changed files with 40 additions and 7 deletions

View file

@ -527,7 +527,6 @@ Mustang::updateAmpObj( const unsigned char *data ) {
match16(f57_champ_id,model) ||
match16(f65_deluxe_id,model) ||
match16(f65_princeton_id,model) ||
match16(f65_twin_id,model) ||
match16(s60s_thrift_id,model) ) {
new_amp = new AmpCC( this, model, 0 );
}
@ -556,6 +555,9 @@ Mustang::updateAmpObj( const unsigned char *data ) {
else if ( match16(f57_twin_id,model) ) {
new_amp = new AmpCC7( this, model, 0 );
}
else if ( match16(f65_twin_id,model) ) {
new_amp = new AmpCC8( this, model, 0 );
}
else if ( match16(null_amp_id,model) ) {
new_amp = new NullAmpCC( this, model, 0 );
}