Fix #7672: more than 32 resolutions may be available

This commit is contained in:
glx
2019-07-28 17:02:41 +02:00
committed by Charles Pigott
parent 425cd3e4ca
commit 8cccb158e9
2 changed files with 2 additions and 3 deletions

View File

@@ -93,9 +93,8 @@ enum SpecialStrings {
SPECSTR_LANGUAGE_START = 0x7100,
SPECSTR_LANGUAGE_END = SPECSTR_LANGUAGE_START + MAX_LANG - 1,
/* reserve 32 strings for various screen resolutions */
/* reserve strings for various screen resolutions MUST BE THE LAST VALUE IN THIS ENUM */
SPECSTR_RESOLUTION_START = SPECSTR_LANGUAGE_END + 1,
SPECSTR_RESOLUTION_END = SPECSTR_RESOLUTION_START + 0x1F,
};
#endif /* STRINGS_TYPE_H */