diff options
author | rubidium <rubidium@openttd.org> | 2009-07-23 19:31:50 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-07-23 19:31:50 +0000 |
commit | e9bc557b2a3c13ab8038d577c047813c691122dd (patch) | |
tree | 70792ef1ccec63af813dd750920ba9d86a0febd2 /src/ai | |
parent | 20c1e42be128c915087b0ecf081b3101bcec234e (diff) | |
download | openttd-e9bc557b2a3c13ab8038d577c047813c691122dd.tar.xz |
(svn r16930) -Codechange: more StringID name unification and grouping
Diffstat (limited to 'src/ai')
-rw-r--r-- | src/ai/ai_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ai/ai_gui.cpp b/src/ai/ai_gui.cpp index 6e1826bef..b4bfbce3c 100644 --- a/src/ai/ai_gui.cpp +++ b/src/ai/ai_gui.cpp @@ -343,7 +343,7 @@ struct AISettingsWindow : public Window { /* Display a query box so users can enter a custom value. */ this->clicked_row = num; SetDParam(0, this->ai_config->GetSetting(config_item.name)); - ShowQueryString(STR_CONFIG_SETTING_INT32, STR_CONFIG_SETTING_QUERY_CAPT, 10, 100, this, CS_NUMERAL, QSF_NONE); + ShowQueryString(STR_JUST_INT, STR_CONFIG_SETTING_QUERY_CAPT, 10, 100, this, CS_NUMERAL, QSF_NONE); } this->SetDirty(); |