these two lines were supposed to perform truncation, not rounding.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22419
b3059339-0415-0410-9bf9-
f77b7e298cf2
continue;
}
- text_info.glyphs[text_info.length].pos.x = d6_to_int(pen.x);
- text_info.glyphs[text_info.length].pos.y = d6_to_int(pen.y);
+ text_info.glyphs[text_info.length].pos.x = pen.x >> 6;
+ text_info.glyphs[text_info.length].pos.y = pen.y >> 6;
pen.x += text_info.glyphs[text_info.length].advance.x;
pen.x += double_to_d6(render_context.hspacing);