Don't poll irrlicht device without graphics
It fixed crashes for joystick event which does XResetScreenSaver
This commit is contained in:
@@ -641,8 +641,9 @@ void MainLoop::renderGUI(int phase, int loop_index, int loop_size)
|
||||
#ifdef SERVER_ONLY
|
||||
return;
|
||||
#else
|
||||
if (NetworkConfig::get()->isNetworking() &&
|
||||
NetworkConfig::get()->isServer() )
|
||||
if ((NetworkConfig::get()->isNetworking() &&
|
||||
NetworkConfig::get()->isServer()) ||
|
||||
ProfileWorld::isNoGraphics())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user