Changeset 559
- Timestamp:
- 10/14/08 22:42:49 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/midiAutosense/libs/hydrogen/src/action.cpp
r558 r559 181 181 182 182 if( sActionString == "MUTE" ){ 183 //mutes the master, not a single strip 183 184 pEngine->getSong()->__is_muted = true; 184 185 return true; … … 207 208 208 209 if( sActionString == "STRIP_VOLUME_RELATIVE" ){ 210 //increments/decrements the volume of one mixer strip 209 211 210 212 bool ok; … … 236 238 237 239 if( sActionString == "STRIP_VOLUME_ABSOLUTE" ){ 238 240 //sets the volume of a mixer strip to a given level (percentage) 241 239 242 bool ok; 240 243 int nLine = pAction->getParameter1().toInt(&ok,10); … … 261 264 262 265 if( sActionString == "BPM_CC_RELATIVE" ){ 266 /* 267 * increments/decrements the BPM 268 * this is useful if the bpm is set by a rotary control knob 269 */ 270 263 271 AudioEngine::get_instance()->lock( "Action::BPM_CC_RELATIVE" ); 264 272
