diff --git a/src/com/blarg/gdx/graphics/DelayedSpriteBatch.java b/src/com/blarg/gdx/graphics/DelayedSpriteBatch.java index 133a2f0..2997224 100644 --- a/src/com/blarg/gdx/graphics/DelayedSpriteBatch.java +++ b/src/com/blarg/gdx/graphics/DelayedSpriteBatch.java @@ -264,9 +264,11 @@ public class DelayedSpriteBatch { float glyphWidth = ((float)glyph.width * scale); float glyphHeight = ((float)glyph.height * scale); + float glyphXoffset = ((float)glyph.xoffset * scale); + float glyphYoffset = ((float)glyph.yoffset * scale); draw( fontTexture, - currentX + glyph.xoffset, currentY + glyph.yoffset, + currentX + glyphXoffset, currentY + glyphYoffset, glyphWidth, glyphHeight, glyph.srcX, glyph.srcY, glyph.width, glyph.height, tint