summaryrefslogtreecommitdiff
path: root/src/genworld_gui.cpp
diff options
context:
space:
mode:
authorterkhen <terkhen@openttd.org>2011-04-17 18:44:09 +0000
committerterkhen <terkhen@openttd.org>2011-04-17 18:44:09 +0000
commit5bb7a48cd23a61ed523d09a5884848aa94e47da6 (patch)
tree9969eda1b3d2ff0e92c76c7808cde599f3c668a8 /src/genworld_gui.cpp
parent0bd44f60e95e8f54d749132520bd2f3044e2efb7 (diff)
downloadopenttd-5bb7a48cd23a61ed523d09a5884848aa94e47da6.tar.xz
(svn r22345) -Change: Remove pixel limiter for text buffers.
Diffstat (limited to 'src/genworld_gui.cpp')
-rw-r--r--src/genworld_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/genworld_gui.cpp b/src/genworld_gui.cpp
index a97859e7e..f1a58679b 100644
--- a/src/genworld_gui.cpp
+++ b/src/genworld_gui.cpp
@@ -356,7 +356,7 @@ struct GenerateLandscapeWindow : public QueryStringBaseWindow {
/* snprintf() always outputs trailing '\0', so whole buffer can be used */
snprintf(this->edit_str_buf, this->edit_str_size, "%u", _settings_newgame.game_creation.generation_seed);
- InitializeTextBuffer(&this->text, this->edit_str_buf, this->edit_str_size, 120);
+ InitializeTextBuffer(&this->text, this->edit_str_buf, this->edit_str_size);
this->caption = STR_NULL;
this->afilter = CS_NUMERAL;