Turning the console off doesn't improve game speed at least not anything noticeable on my side I have the console turned off in my builds its just a single line edit in the C++ code.
If you want to turn the console off you just need to uncomment the following line at the top of main.cpp
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
// This would get rid of the console window
// #pragma comment(linker, "/subsystem:windows /ENTRY:mainCRTStartup")
So it should look like this:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
// This would get rid of the console window
#pragma comment(linker, "/subsystem:windows /ENTRY:mainCRTStartup")
Then build Minetest and play, Hope this helps also let me know if it does speed anything up for you I didn't notice any difference but that could just be on my system.