Fixed minor compiler warnings in sf::Text

This commit is contained in:
Laurent Gomila 2013-10-02 22:40:24 +02:00
parent 4dcd1f9c75
commit b8f15d5a71

View File

@ -251,7 +251,10 @@ void Text::updateGeometry()
float y = static_cast<float>(m_characterSize);
// Create one quad for each character
float minX = m_characterSize, minY = m_characterSize, maxX = 0, maxY = 0;
float minX = static_cast<float>(m_characterSize);
float minY = static_cast<float>(m_characterSize);
float maxX = 0.f;
float maxY = 0.f;
Uint32 prevChar = 0;
for (std::size_t i = 0; i < m_string.getSize(); ++i)
{