File diff r27165:ea28ecab6159 → r27166:64e04a3ef9b1
src/openttd.cpp
Show inline comments
 
@@ -100,13 +100,13 @@ extern std::string _config_file;
 

	
 
bool _save_config = false;
 
bool _request_newgrf_scan = false;
 
NewGRFScanCallback *_request_newgrf_scan_callback = nullptr;
 

	
 
/** Available settings for autosave intervals. */
 
static const Month _autosave_months[] = {
 
static const TimerGameCalendar::Month _autosave_months[] = {
 
	 0, ///< never
 
	 1, ///< every month
 
	 3, ///< every 3 months
 
	 6, ///< every 6 months
 
	12, ///< every 12 months
 
};
 
@@ -390,13 +390,13 @@ void OpenBrowser(const char *url)
 

	
 
	OSOpenBrowser(url);
 
}
 

	
 
/** Callback structure of statements to be executed after the NewGRF scan. */
 
struct AfterNewGRFScan : NewGRFScanCallback {
 
	Year startyear = INVALID_YEAR;              ///< The start year.
 
	TimerGameCalendar::Year startyear = INVALID_YEAR; ///< The start year.
 
	uint32 generation_seed = GENERATE_NEW_SEED; ///< Seed for the new game.
 
	std::string dedicated_host;                 ///< Hostname for the dedicated server.
 
	uint16 dedicated_port = 0;                  ///< Port for the dedicated server.
 
	std::string connection_string;              ///< Information about the server to connect to
 
	std::string join_server_password;           ///< The password to join the server with.
 
	std::string join_company_password;          ///< The password to join the company with.