Renamed OSX.mm/OSX.h to macosx.mm/macosx.h to match love's file naming conventions.

This commit is contained in:
Alex Szpakowski
2015-08-15 00:41:45 -03:00
parent db91a73d57
commit e44f20fdc6
9 changed files with 19 additions and 19 deletions
+2 -2
View File
@@ -410,8 +410,8 @@ std::vector<Font::DrawCommand> Font::generateVertices(const std::string &text, s
for (int j = 0; j < 4; j++)
{
vertices.push_back(glyph.vertices[j]);
vertices.back().x += dx /*+ kerning*/;
vertices.back().y += dy /*+ kerning.y*/ + lineheight;
vertices.back().x += dx;
vertices.back().y += dy + lineheight;
}
// Check if glyph texture has changed since the last iteration.