| 32 | } |
| 33 | |
| 34 | QString buildMemoryRecallRetuneCommand(int sliceId, const MemoryEntry& memory) |
| 35 | { |
| 36 | if (sliceId < 0 || memory.freq <= 0.0) |
| 37 | return {}; |
| 38 | return QString("slice tune %1 %2 autopan=0").arg(sliceId).arg(memory.freq, 0, 'f', 6); |
| 39 | } |
| 40 | |
| 41 | QString buildMemoryRecallSliceFixupCommand(int sliceId, const MemoryEntry& memory) |
| 42 | { |
no outgoing calls