diff --git a/graphics/text_box.cpp b/graphics/text_box.cpp index 4fdefa4..98275aa 100644 --- a/graphics/text_box.cpp +++ b/graphics/text_box.cpp @@ -34,7 +34,7 @@ TextBox::~TextBox() { void TextBox::DrawTo(SDL_Renderer* renderer, int posX, int posY, int pointSize) { for (std::list::iterator it = lineList.begin(); it != lineList.end(); it++) { it->DrawTo(renderer, posX, posY); - posY -= pointSize; + posY += pointSize; } }