diff options
author | P. J. McDermott <pj@pehjota.net> | 2014-07-11 22:31:41 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2014-07-11 22:31:41 (EDT) |
commit | 2b66788a476d2c0dd84b1d74b904953cdbb59379 (patch) | |
tree | 288bdf8157b2180d8be5298dce3fdf3632ff4102 | |
parent | fdbdb55bc2154f47205f45ed170baa0ccaae2d75 (diff) |
parse_bdf_2_1(): Use the right function
-rwxr-xr-x | bin/bdf2fbcon | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bdf2fbcon b/bin/bdf2fbcon index 8f301f5..bd61b28 100755 --- a/bin/bdf2fbcon +++ b/bin/bdf2fbcon @@ -278,7 +278,7 @@ sub parse_bdf_2_1 $section = BDF_2_1_SECTION_NONE; } else { $font->{'chars'}[$encoding]->{'bitmap'}[$y++] = - ord($line); + hex($line); } } } |