Fixed two typos spotted by Ryan Martindale <ryan@qsicorp.com>.

This commit is contained in:
Werner Lemberg 2000-10-17 14:29:48 +00:00
parent a444ee94cd
commit d2e9536258
1 changed files with 2 additions and 2 deletions

View File

@ -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 );
}