What is wrong with my codes?
When one of the score counters is smaller than the other one, one of them will look normal. But if both of them have the same size both will look like white blocks :/
//score text
sf::Font font;
font.loadFromFile("Squareo.ttf");
font.loadFromFile("Squareo.ttf");
sf::Text score1("0", font, 80);
score1.setPosition(RENDERWIDTH / 4, 0);
sf::Text score2("0", font, 80);
score2.setPosition(3 * RENDERWIDTH / 4 - score2.getLocalBounds().width, 0);
//score text
sf::Font font;
font.loadFromFile("Squareo.ttf");
font.loadFromFile("Squareo.ttf");
sf::Text score1("0", font, 79);
score1.setPosition(RENDERWIDTH / 4, 0);
sf::Text score2("0", font, 80);
score2.setPosition(3 * RENDERWIDTH / 4 - score2.getLocalBounds().width, 0);