mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-31 02:19:09 +00:00
(svn r16554) -Fix (r16433): compilation with disabled network was broken
This commit is contained in:
@@ -1523,6 +1523,7 @@ void SetDefaultCompanySettings(CompanyID cid)
|
||||
}
|
||||
}
|
||||
|
||||
#if defined(ENABLE_NETWORK)
|
||||
/**
|
||||
* Sync all company settings in a multiplayer game.
|
||||
*/
|
||||
@@ -1538,6 +1539,7 @@ void SyncCompanySettings()
|
||||
if (old_value != new_value) NetworkSend_Command(0, i, new_value, CMD_CHANGE_COMPANY_SETTING, NULL, NULL);
|
||||
}
|
||||
}
|
||||
#endif /* ENABLE_NETWORK */
|
||||
|
||||
/**
|
||||
* Get the index in the _company_settings array of a setting
|
||||
|
@@ -26,7 +26,12 @@ void SaveGRFPresetToConfig(const char *config_name, struct GRFConfig *config);
|
||||
void DeleteGRFPresetFromConfig(const char *config_name);
|
||||
|
||||
uint GetCompanySettingIndex(const char *name);
|
||||
void SyncCompanySettings();
|
||||
void SetDefaultCompanySettings(CompanyID cid);
|
||||
|
||||
#if defined(ENABLE_NETWORK)
|
||||
void SyncCompanySettings();
|
||||
#else /* ENABLE_NETWORK */
|
||||
static inline void SyncCompanySettings() {}
|
||||
#endif /* ENABLE_NETWORK */
|
||||
|
||||
#endif /* SETTINGS_FUNC_H */
|
||||
|
Reference in New Issue
Block a user