From 5a96b07c1f5dbd0a0a27f3fa41a5052a702d2b49 Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Tue, 17 Oct 2000 14:29:48 +0000 Subject: [PATCH] Fixed two typos spotted by Ryan Martindale . --- src/base/ftglyph.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/base/ftglyph.c b/src/base/ftglyph.c index ccea17903..47d61caac 100644 --- a/src/base/ftglyph.c +++ b/src/base/ftglyph.c @@ -163,7 +163,7 @@ size = (FT_ULong)( pitch * source->rows ); if ( !ALLOC( target->buffer, size ) ) - MEM_Copy( source->buffer, target->buffer, size ); + MEM_Copy( target->buffer, source->buffer, size ); return error; } @@ -233,7 +233,7 @@ cbox->xMin = glyph->left << 6; cbox->xMax = cbox->xMin + ( glyph->bitmap.width << 6 ); cbox->yMax = glyph->top << 6; - cbox->yMin = cbox->xMax - ( glyph->bitmap.rows << 6 ); + cbox->yMin = cbox->yMax - ( glyph->bitmap.rows << 6 ); }