Why doesnt this work:
sf::CircleShape circle(5,32);
circle.setPosition( sf::Mouse::getPosition(window).x, sf::Mouse::getPosition(window).y );
circle.setFillColor(sf::Color::Transparent);
target.draw(circle,sf::BlendNone);
target.display();
if this works:
sf::Vertex point(sf::Vector2f(sf::Mouse::getPosition(window)), sf::Color::Transparent);
target.draw(&point, 1, sf::Points, sf::BlendNone);
target.display();