View | Details | Raw Unified | Return to bug 196655
Collapse All | Expand All

(-)SDL_ttf.c (-1 / +1 lines)
Lines 1752-1758 Link Here
1752
	/* Copy the character from the pixmap */
1752
	/* Copy the character from the pixmap */
1753
	src = glyph->pixmap.buffer;
1753
	src = glyph->pixmap.buffer;
1754
	dst = (Uint8*) textbuf->pixels;
1754
	dst = (Uint8*) textbuf->pixels;
1755
	for ( row = 0; row < glyph->bitmap.rows; ++row ) {
1755
	for ( row = 0; row < glyph->pixmap.rows; ++row ) {
1756
		memcpy( dst, src, glyph->pixmap.width );
1756
		memcpy( dst, src, glyph->pixmap.width );
1757
		src += glyph->pixmap.pitch;
1757
		src += glyph->pixmap.pitch;
1758
		dst += textbuf->pitch;
1758
		dst += textbuf->pitch;

Return to bug 196655