Now I started making Window. I added necessary libs to linker output: sfml-window.lib and it compiles and links good, but after running I got msg:
Run-Time Check Failure #2 - Stack around the variable 'App' was corrupted.
I dont know what is going on. I read that its my code fault, but I copied it from tutorial:
#include <SFML/Window.hpp>
int main()
{
sf::Window App(sf::VideoMode(800, 600, 32), "SFML Window");
}
And error is becouse of the line in main(), becouse if i put it into comment program works good(doing nothing but works)
Kind Regards
Fuv