| 267 | } |
| 268 | |
| 269 | void LooperRecorder::PreRepatch(PatchCableSource* cableSource) |
| 270 | { |
| 271 | for (int i = 0; i < mLooperPatchCables.size(); ++i) |
| 272 | { |
| 273 | if (cableSource == mLooperPatchCables[i]) |
| 274 | { |
| 275 | Looper* looper = nullptr; |
| 276 | if (i < mLoopers.size()) |
| 277 | looper = mLoopers[i]; |
| 278 | if (looper) |
| 279 | looper->SetRecorder(nullptr); |
| 280 | } |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | void LooperRecorder::PostRepatch(PatchCableSource* cableSource, bool fromUserClick) |
| 285 | { |
nothing calls this directly
no test coverage detected