I have a few quick questions about windows:
I'm creating a window as such.
// Create the window settings
sf::WindowSettings settings;
settings.DepthBits = 32;
settings.StencilBits = 8;
settings.AntialiasingLevel = 2;
// Create the window
sf::Window* window = (new sf::Window(sf::VideoMode(dim.x, dim.y, 32), "abc", sf::Style::Close | sf::Style::Titlebar | sf::Style::Resize, settings));
Now, the title of the window ends up being something like this "LLLLabc" (a weird ascii L though.)
Also, when I call
delete window;
I get a memory error.
Any ideas why? Thanks