Skip to content

Commit

Permalink
Missing ANSI code terminator (fix #7)
Browse files Browse the repository at this point in the history
  • Loading branch information
lastguest authored Apr 1, 2017
1 parent 5e6efb6 commit 2dbe3c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Pixeler/Matrix.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public function render(){
. chr(128 + (($dots_r_4096 - $dots_r_64) >> 6 ))
. chr(128 + $dots_r_64);
}
echo $ESC."[0\n";
echo $ESC."[0m\n";
}
$buffer = ob_get_contents();
ob_end_clean();
Expand Down

0 comments on commit 2dbe3c2

Please sign in to comment.