mirror of https://github.com/OpenTTD/OpenTTD
Fix 8bef06a2: don't use "extern" when you want to implement a global (#8373)
parent
da7c74ba7e
commit
5d0331ecdc
|
@ -84,7 +84,8 @@ bool HandleBootstrap();
|
||||||
extern Company *DoStartupNewCompany(bool is_ai, CompanyID company = INVALID_COMPANY);
|
extern Company *DoStartupNewCompany(bool is_ai, CompanyID company = INVALID_COMPANY);
|
||||||
extern void ShowOSErrorBox(const char *buf, bool system);
|
extern void ShowOSErrorBox(const char *buf, bool system);
|
||||||
extern char *_config_file;
|
extern char *_config_file;
|
||||||
extern bool _save_config = false;
|
|
||||||
|
bool _save_config = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Error handling for fatal user errors.
|
* Error handling for fatal user errors.
|
||||||
|
|
Loading…
Reference in New Issue