commit 314c2c6fa126732f98745c03f1ff31a413c39497
parent 0db8401a456f08d755af57f7bfde6d7b255faf1e
Author: Andy Herbert <andy.herbert@gmail.com>
Date: Sun, 3 Nov 2013 19:34:30 +0000
Fixed missing comment issue.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ansilove.js b/ansilove.js
@@ -104,7 +104,7 @@ var AnsiLove = (function () {
pos = bytes.length - 128 - (commentCount * 64) - 5;
if (this.lookahead(COMNT_ID)) {
this.getS(5);
- while (--commentCount > 0) {
+ while (commentCount-- > 0) {
this.sauce.comments.push(this.getS(64));
}
}