Bugfix: Don't draw the interlace lines 1px too far

This commit is contained in:
Mathias Gumz 2012-04-10 09:13:04 +02:00
parent 7b6dc2ad72
commit 56af5a1635

View file

@ -1427,7 +1427,7 @@ Pixmap TextureRender::renderSolid(const FbTk::Texture &texture) {
lgc.setForeground(texture.colorTo());
register unsigned int i = 0;
for (; i < height; i += 2)
pixmap.drawLine(lgc.gc(), 0, i, width, i);
pixmap.drawLine(lgc.gc(), 0, i, width - 1, i);
}