Hi all:
I'm doing some tests with SFML, and i have an error:
Unhandled exception at 0x7549f7cc in Mesh_Transformd.exe: 0xC0000005: Access violation reading location 0xcccc004f.
the app is this:
#include <SFML/Window.hpp>
#include <SFML/System.hpp>
#include <SFML/Graphics.hpp>
int main(int argc, char** argv)
{
sf::Window window(sf::VideoMode(800,600), "HELLO");
return 0;
}
It happens only in the debug build.
PS: Im using SFML 1.6 and VS 2010 Pro