Use correct texture for fonts;

This commit is contained in:
bjorn 2017-03-14 02:32:01 -07:00
parent c4f6df11e8
commit 22526552dc
1 changed files with 1 additions and 1 deletions

View File

@ -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);