Skip to content

Commit

Permalink
Whitespace fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fcambus committed Feb 7, 2017
1 parent fac9ee7 commit b20df88
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

Ansilove/PHP 1.11 (2013-03-26)

- Fixed a bug in the TUNDRA renderer
- Fixed a bug in the TUNDRA renderer
- Fixed inconsistency when using Amiga fonts: bold characters are now
displayed only in CED and WorkBench modes
- Removing PHP warning about date.timezone settings when logging errors
Expand All @@ -26,7 +26,7 @@ Ansilove/PHP 1.10 (2012-10-08)
in HTML and PDF)
- Using proper bitshift instead of pow for ADF / IDF / XBIN font processing
- Skipping 'Set mode' and 'Reset mode' sequences to correctly render files
saved with recent versions of PabloDraw
saved with recent versions of PabloDraw



Expand Down
8 changes: 4 additions & 4 deletions ansilove.php
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,7 @@ function load_ansi($input,$output,$font,$bits,$icecolors)
imagecopy($ansi,$font,$position_x*$bits,$position_y*$font_size_y+10,$character*$font_size_x,$color_foreground*$font_size_y+10,$bits,4);
imagecopy($ansi,$font,$position_x*$bits-1,$position_y*$font_size_y+14,$character*$font_size_x,$color_foreground*$font_size_y+14,$bits,2);
}

if ($italics && $bold)
{
imagecopy($ansi,$font,$position_x*$bits+3+1,$position_y*$font_size_y,$character*$font_size_x,$color_foreground*$font_size_y,$bits,2);
Expand Down Expand Up @@ -979,7 +979,7 @@ function load_ansi($input,$output,$font,$bits,$icecolors)
{
$loop_column++;
}

$loop_column++;
}

Expand Down Expand Up @@ -1090,7 +1090,7 @@ function load_ansi($input,$output,$font,$bits,$icecolors)
imagedestroy($ansi);
imagedestroy($background);
imagedestroy($font);

return $output_files;
}

Expand Down Expand Up @@ -1327,7 +1327,7 @@ function load_pcboard($input,$output,$font,$bits)
$position_x=(10*(ord($input_file_buffer[$loop+5])-48)+ord($input_file_buffer[$loop+6])-48)-1;
$loop+=6;
}
}
}
elseif ($current_character!=10 && $current_character!=13 && $current_character!=9)
{

Expand Down
2 changes: 1 addition & 1 deletion documentation/ansilove.txt
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Using Git
git clone git@github.com:ansilove/ansilove-php.git
----

IMPORTANT: Under Windows people must install the PHP binaries: the easiest way is to use the '.exe' installer and enable the GD library.
IMPORTANT: Under Windows people must install the PHP binaries: the easiest way is to use the '.exe' installer and enable the GD library.

Configuration options
----------------------
Expand Down

0 comments on commit b20df88

Please sign in to comment.