/* Multiplayer buttons. */ if (!_networking) { if (_settings_client.gui.start_spectator || _local_company == COMPANY_SPECTATOR) { if (_local_company == COMPANY_SPECTATOR) { plane = CWP_MP_C_JOIN; } else { plane = (int)SZSP_NONE; } } else { plane = (int)SZSP_NONE; } } else { if (local) { plane = CWP_MP_C_PWD; } else { plane = CWP_MP_C_JOIN; } } // plane = ((!_networking) ? (_settings_client.gui.start_spectator || _local_company == COMPANY_SPECTATOR) ? (_local_company == COMPANY_SPECTATOR) ? CWP_MP_C_JOIN : (int)SZSP_NONE : (int)SZSP_NONE : (int)(local ? CWP_MP_C_PWD : CWP_MP_C_JOIN));