Hi,
I'm using Visual Studio 2013 on Windows 8.1 64bit.
I've set up an empty C++ project as per
the tutorial. I've downloaded «Visual C++ 12 (2013) - 32-bit», since the target is 32bit.
I've made sure that the project's active configuration (Debug) match the libraries (sfml-graphics-d.lib, sfml-window-d.lib, sfml-system-d.lib).
I compile successfully the code of
the tutorial. Unfortunately, when I run it, I get a crash at the following line:
window.draw(shape);
A crash is reported because of access violation concerning sfml-graphics-2-d.lib, trying to execute at location 0x00000000.
If I comment out "window.draw(shape);", I get to successfully display a blank window.
I've double checked everything in the tutorial and googled for a while. Still can't find any solution.
Anyone has advice as to what I should investigate now?