Skip to content

Commit

Permalink
remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
shimpe committed Feb 21, 2022
1 parent 732ae1d commit d5e55dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Classes/Panola.sc
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Panola {
recorded_digits = recorded_digits ++ char.asString;
} {
unrolldata[unrolldata.size-1] =
unrolldata[unrolldata.size-1].add(recorded_digits.postln.asInteger);
unrolldata[unrolldata.size-1].add(recorded_digits.asInteger);
recorded_digits = "";
expecting_digits = false;
}
Expand All @@ -97,7 +97,7 @@ Panola {
};
});
if (expecting_digits) {
unrolldata[unrolldata.size-1] = unrolldata[unrolldata.size-1].add(recorded_digits.postln.asInteger);
unrolldata[unrolldata.size-1] = unrolldata[unrolldata.size-1].add(recorded_digits.asInteger);
};
unrolldata = unrolldata.sort({
| el1, el2 |
Expand Down Expand Up @@ -127,7 +127,7 @@ Panola {
t = this.pr_unroll_cleanup(t);
u = this.pr_unroll_find_inner(t);
while ({u != []}, {
var first = u[0].postln;
var first = u[0];
var temp;
var repeater = first[3].asInteger;
var unrolled;
Expand Down

0 comments on commit d5e55dc

Please sign in to comment.