summaryrefslogtreecommitdiff
path: root/src/town_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/town_gui.cpp
parent0bd44f60e95e8f54d749132520bd2f3044e2efb7 (diff)
downloadopenttd-5bb7a48cd23a61ed523d09a5884848aa94e47da6.tar.xz
(svn r22345) -Change: Remove pixel limiter for text buffers.
Diffstat (limited to 'src/town_gui.cpp')
-rw-r--r--src/town_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/town_gui.cpp b/src/town_gui.cpp
index e1e89648a..aa95884f0 100644
--- a/src/town_gui.cpp
+++ b/src/town_gui.cpp
@@ -1030,7 +1030,7 @@ public:
params(_settings_game.game_creation.town_name)
{
this->InitNested(desc, window_number);
- InitializeTextBuffer(&this->text, this->edit_str_buf, this->edit_str_size, this->max_chars, 0);
+ InitializeTextBuffer(&this->text, this->edit_str_buf, this->edit_str_size, this->max_chars);
this->RandomTownName();
this->UpdateButtons(true);
}