| 282 | } |
| 283 | |
| 284 | void LooperRecorder::PostRepatch(PatchCableSource* cableSource, bool fromUserClick) |
| 285 | { |
| 286 | for (int i = 0; i < mLoopers.size(); ++i) |
| 287 | { |
| 288 | if (cableSource == mLooperPatchCables[i]) |
| 289 | { |
| 290 | mLoopers[i] = dynamic_cast<Looper*>(mLooperPatchCables[i]->GetTarget()); |
| 291 | if (mLoopers[i]) |
| 292 | mLoopers[i]->SetRecorder(this); |
| 293 | } |
| 294 | } |
| 295 | } |
| 296 | |
| 297 | void LooperRecorder::DrawModule() |
| 298 | { |
nothing calls this directly
no test coverage detected