Commit 2f41b184beea139c96ed73162e851993c7c44edf

Werner Lemberg 2001-05-08T13:54:36

Another small fix from Francesco.

diff --git a/ChangeLog b/ChangeLog
index 4b08fc6..d64f426 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
 2001-05-08  Francesco Zappa Nardelli  <Francesco.Zappa.Nardelli@ens.fr>
 
-	* src/pcfdriver.c: Fixed incorrect bitmap width computation.
+	* src/pcfdriver.c (PCF_Load_Glyph): Fixed incorrect bitmap width
+	computation.
 
 2001-05-08  David Turner  <david@freetype.org>
 
diff --git a/src/pcf/pcfdriver.c b/src/pcf/pcfdriver.c
index bdcb7a7..a3c4c93 100644
--- a/src/pcf/pcfdriver.c
+++ b/src/pcf/pcfdriver.c
@@ -220,7 +220,7 @@ THE SOFTWARE.
       }
     }
 
-    slot->bitmap_left = 0;
+    slot->bitmap_left = metric->leftSideBearing;
     slot->bitmap_top  = metric->ascent;
 
     slot->metrics.horiAdvance  = metric->characterWidth << 6 ;