This is my code:
#include <iostream>
#include <SFML\Window.hpp>
#include <SFML\Graphics.hpp>
int main() {
sf::Window Window(sf::VideoMode(800, 600), "SFML Window");
while (Window.isOpen()) {
sf::Event Event;
while (Window.pollEvent(Event)) {
if (Event.type == sf::Event::Closed)
Window.close();
}
}
return 0;
}
When I ran it, a console window and a message box showed up, said:
"The procedure entry point
?Init@locale@std@@CAPAV_Locimp@12@_N@Z could not be
located in the dynamic link librabry MSVCRP110D.dll"
like in the picture:
http://goo.gl/pnhDNd