diff options
-rw-r--r-- | src/intro_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intro_gui.cpp b/src/intro_gui.cpp index d61f5b252..dcc55b131 100644 --- a/src/intro_gui.cpp +++ b/src/intro_gui.cpp @@ -88,7 +88,7 @@ struct SelectGameWindow : public Window { Dimension d = {0, 0}; if (widget == SGI_DIFFICULTIES) { 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)); } } |