(svn r22345) -Change: Remove pixel limiter for text buffers.

This commit is contained in:
terkhen
2011-04-17 18:44:09 +00:00
parent 97ceef7663
commit 23f42e5769
7 changed files with 13 additions and 20 deletions

View File

@@ -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;