Skip to content

Commit

Permalink
Fixed a bug in the TUNDRA renderer
Browse files Browse the repository at this point in the history
  • Loading branch information
fcambus committed Feb 28, 2014
1 parent 6b482d7 commit 34a6c3e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion ansilove.php
Expand Up @@ -8,7 +8,7 @@
/* http://ansilove.sourceforge.net */ /* http://ansilove.sourceforge.net */
/* */ /* */
/* Created: 2003/07/17 */ /* Created: 2003/07/17 */
/* Last Updated: 2013/10/03 */ /* Last Updated: 2014/02/28 */
/* */ /* */
/* Ansilove is released under a MIT-style license. */ /* Ansilove is released under a MIT-style license. */
/* See LICENSE file for details. */ /* See LICENSE file for details. */
Expand Down Expand Up @@ -2196,16 +2196,22 @@ function load_tundra($input,$output,$font,$bits)


if ($character==2) if ($character==2)
{ {
$character=ord($input_file_buffer[$loop+1]);

$loop+=5; $loop+=5;
} }


if ($character==4) if ($character==4)
{ {
$character=ord($input_file_buffer[$loop+1]);

$loop+=5; $loop+=5;
} }


if ($character==6) if ($character==6)
{ {
$character=ord($input_file_buffer[$loop+1]);

$loop+=9; $loop+=9;
} }


Expand Down

0 comments on commit 34a6c3e

Please sign in to comment.