Hello!
I'm using Visual Studio express 2013 + SFML 2.4.0 for vc12 32-bit.
Here goes problem code:
sf::Font font;
if (!font.loadFromFile("res/Calibri.ttf")) {
std::cout << "Font load error" << std::endl;
return;
} else {
std::cout << "Font no error" << std::endl;
}
m_input.setFont(font);
Font is loading with no errors!
But i got exception on m_input.setFont(font).
I've put error message and my additional dependencies screenshots at atachments.
Any clues?
I'm running in debug mode.
I've attached call stack screenshot.
Seems that problem is here:
void Console::Render(sf::RenderWindow& window)
{
window.draw(m_background);
window.draw(m_input);
}
On window.draw(m_input) i've got:
Frames below may be incorrect and / or missing, no symbols loaded for sfml-grahpics-d-2.dll