mirror of
https://github.com/love2d/love.git
synced 2026-08-16 16:20:42 +02:00
Removed the internal rounding applied to the x and y parameters of love.graphics.print/printf. Resolves issue #1062.
This commit is contained in:
@@ -231,7 +231,7 @@ void Text::draw(float x, float y, float angle, float sx, float sy, float ox, flo
|
||||
const size_t stride = sizeof(Font::GlyphVertex);
|
||||
|
||||
OpenGL::TempTransform transform(gl);
|
||||
transform.get() *= Matrix4(ceilf(x), ceilf(y), angle, sx, sy, ox, oy, kx, ky);
|
||||
transform.get() *= Matrix4(x, y, angle, sx, sy, ox, oy, kx, ky);
|
||||
|
||||
{
|
||||
GLBuffer::Bind bind(*vbo);
|
||||
|
||||
Reference in New Issue
Block a user