diff --git a/src/graphics/font.c b/src/graphics/font.c index 19267d40..6d448d98 100644 --- a/src/graphics/font.c +++ b/src/graphics/font.c @@ -147,7 +147,7 @@ void lovrFontPrint(Font* font, const char* str, float x, float y, float z, float lovrGraphicsRotate(angle, ax, ay, az); lovrGraphicsTranslate(0, -cy / 2, 0); lovrGraphicsSetDepthTest(COMPARE_LEQUAL); - lovrGraphicsBindTexture(NULL); + lovrGraphicsBindTexture(font->texture); lovrGraphicsSetShapeData(font->vertices.data, font->vertices.length); lovrGraphicsDrawPrimitive(GL_TRIANGLES, 0, 1, 0); lovrGraphicsSetDepthTest(oldCompareMode);