I have about had it trying to get 2.0 up and running for anything at this point.
I keep getting errors no matter what I do.
Here's my current issue.
'SFML2Tester.exe': Loaded 'C:\Documents and Settings\Roland.USER-6FEF0AE329\My Documents\Visual Studio 2010\Projects\SFML2Tester\Debug\SFML2Tester.exe', Symbols loaded.
'SFML2Tester.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', Cannot find or open the PDB file
'SFML2Tester.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll', Cannot find or open the PDB file
'SFML2Tester.exe': Loaded 'C:\Documents and Settings\Roland.USER-6FEF0AE329\My Documents\Visual Studio 2010\Projects\SFML2Tester\SFML2Tester\sfml-graphics-d-2.dll', Symbols loaded.
SXS: RtlCreateActivationContext() failed 0xc000000d
LDR: LdrpWalkImportDescriptor() failed to probe c:\documents and settings\roland.user-6fef0ae329\my documents\visual studio 2010\Projects\SFML2Tester\SFML2Tester\sfml-graphics-d-2.dll for its manifest, ntstatus 0xc000000d
Debugger:: An unhandled non-continuable exception was thrown during process load
The program '[260] SFML2Tester.exe: Native' has exited with code -1073741811 (0xc000000d).
Here's the Code.
// SFML2Tester.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <SFML\Graphics.hpp>
#include <SFML\Window.hpp>
int main()
{
sf::RenderWindow Window(sf::VideoMode(800, 600, 32), "SFML Sample Application");
while (Window.IsOpen())
{
sf::Event Event;
while (Window.PollEvent(Event))
{
switch (Event.Type)
{
case sf::Event::Closed:
Window.Close();
break;
default:
break;
}
}
Window.Clear(sf::Color(0, 255, 255));
Window.Display();
}
return 0;
}