ANSI: fix E_NOTICE when overflowing text overflows screen vertical

This commit is contained in:
terrafrost 2017-08-08 21:44:22 -05:00
parent 89188ec570
commit 5c792f6bc1

View File

@ -446,7 +446,7 @@ class File_ANSI
if ($this->x > $this->max_x) { if ($this->x > $this->max_x) {
$this->x = 0; $this->x = 0;
$this->y++; $this->_newLine();
} else { } else {
$this->x++; $this->x++;
} }