Codechange: remove special strings for language and resolutions (#8824)

As OpenTTD grew, we found other ways to do this, and we are no
longer in need for a hack like this.
This commit is contained in:
Patric Stout
2021-03-09 10:58:33 +01:00
committed by GitHub
parent 9fdc881005
commit b21ba566ae
5 changed files with 35 additions and 35 deletions

View File

@@ -86,13 +86,6 @@ enum SpecialStrings {
SPECSTR_SILLY_NAME = 0x70E5,
SPECSTR_ANDCO_NAME = 0x70E6,
SPECSTR_PRESIDENT_NAME = 0x70E7,
/* reserve MAX_LANG strings for the *.lng files */
SPECSTR_LANGUAGE_START = 0x7100,
SPECSTR_LANGUAGE_END = SPECSTR_LANGUAGE_START + MAX_LANG - 1,
/* reserve strings for various screen resolutions MUST BE THE LAST VALUE IN THIS ENUM */
SPECSTR_RESOLUTION_START = SPECSTR_LANGUAGE_END + 1,
};
#endif /* STRINGS_TYPE_H */