Remove unnecessary internal constructor arguments.

This commit is contained in:
Alex Szpakowski
2017-12-24 22:08:57 -04:00
parent a31b500b03
commit f7b2598490
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ namespace graphics
love::Type Text::type("Text", &Drawable::type);
Text::Text(Graphics *gfx, Font *font, const std::vector<Font::ColoredString> &text)
Text::Text(Font *font, const std::vector<Font::ColoredString> &text)
: font(font)
, vertexAttributes(Font::vertexFormat, 0)
, vbo(nullptr)