hi, since i download the 2.0 SFML i cant do anything
even the base code framework makes BEX crashes, ATI driver crashes,
bluescreens, satan screams and squeals
#include <SFML\Graphics.hpp>
#pragma comment(lib,"sfml-system-d.lib")
#pragma comment(lib,"sfml-window-d.lib")
#pragma comment(lib,"sfml-graphics-d.lib")
int main()
{
sf::RenderWindow App(sf::VideoMode(800, 600, 32), "SFMLtest");
sf::Event Event;
App.SetFramerateLimit(20);
while (App.IsOpened())
{
while (App.PollEvent(Event))
{
if (Event.Type == sf::Event::Closed)
App.Close();
if (Event.Type == sf::Event::KeyPressed)
{
if (Event.Key.Code == sf::Keyboard::Escape)
App.Close();
}
}
App.Clear(sf::Color(200, 0, 0));
App.Display();
}
return EXIT_SUCCESS;
}
its Debugging mode with SFML_DYNAMIC set
VC10
i downloaded latest include files from github
and libs/dlls compilted by
http://www.sfml-dev.org/forum/viewtopic.php?t=6548i just dont know what to do with that, dont wanna go back to 1.6