0 Members and 1 Guest are viewing this topic.
std::cerr.rdbuf(NULL);
SFML outputs to std::cerr, and any standard stream can be redirected to whatever you want: a file, nothing, etc.You can try this:Code: [Select]std::cerr.rdbuf(NULL);
If you are using Visual Studio just set the Subsystem to Windows. The Console will disappear.
SFML outputs to std::cerr, and any standard stream can be redirected to whatever you want: a file, nothing, etc.