commit dcc28d8a6ae3a4e6e8576c708c337febb7d12151
parent 8b0aa1b8e36c90f54e0b9d461ee3c56ff72f8712
Author: Adam M <[email protected]>
Date: Sat, 20 Feb 2021 13:04:50 -0600
break pattern tooltip display into lines of 192 max
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/ComputerscareHorseADoodleDoo.cpp b/src/ComputerscareHorseADoodleDoo.cpp
@@ -381,11 +381,12 @@ struct ComputerscareHorseADoodleDoo : ComputerscarePolyModule {
if (showPatternValue) {
out += std::to_string(seq[i].pattern) + " ";
}
- for (int j = 0; j < seq[i].pendingNumSteps; j++) {
+ for (int j = 0; j < seq[i].numSteps; j++) {
bool highStep = seq[i].absoluteSequence[j] == 1;
out += (showTransport && current == j) ? (highStep ? "☺" : "☹") : ( highStep ? "x" : "_");
+ out += j % 192 == 191 ? "\n" : "";
}
out += sep;