Hi,
I've tried compiling just a simple program to test the sfml library.
The program is really simple.
#include <SFML/Window.hpp>
int main()
{
sf::Window App(sf::VideoMode(800, 600, 32), "SFML Window");
while (true)
{
App.Display();
}
return EXIT_SUCCESS;
}
I link the VC2008 libraries and use the supplied DLL-files.
In debug mode I use the -d libraries and in release I use the regular libraries.
In debug mode I get the error message "Run-Time Check Failure #2 - Stack around the variable 'State' was corrupted."
And relaese mode doesn't work at all.
I've also tried compiling the libraries using the supplied vc2000 Solution and used the libraries and dll's with no solution to the problem.
It allways crashes when the window is about to be initiated at "sf::Window App(sf::VideoMode(800, 600, 32), "SFML Window");"