mirror of https://github.com/OpenTTD/OpenTTD
(svn r16753) -Fix (r16740): Don't check the width of the same string 4 times, but pick the maximum width of all difficulty levels
parent
96201f1a41
commit
da5d63e260
|
@ -88,7 +88,7 @@ struct SelectGameWindow : public Window {
|
||||||
Dimension d = {0, 0};
|
Dimension d = {0, 0};
|
||||||
if (widget == SGI_DIFFICULTIES) {
|
if (widget == SGI_DIFFICULTIES) {
|
||||||
for (uint i = STR_DIFFICULTY_LEVEL_EASY; i <= STR_DIFFICULTY_LEVEL_CUSTOM; i++) {
|
for (uint i = STR_DIFFICULTY_LEVEL_EASY; i <= STR_DIFFICULTY_LEVEL_CUSTOM; i++) {
|
||||||
SetDParam(0, STR_DIFFICULTY_LEVEL_EASY + _settings_newgame.difficulty.diff_level);
|
SetDParam(0, i);
|
||||||
d = maxdim(d, GetStringBoundingBox(STR_INTRO_DIFFICULTY));
|
d = maxdim(d, GetStringBoundingBox(STR_INTRO_DIFFICULTY));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue