diff options
author | Jens Arnold <amiconn@rockbox.org> | 2006-04-02 00:46:49 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2006-04-02 00:46:49 +0000 |
commit | e61b079c26e5eaa12f403da6964ac20282df248e (patch) | |
tree | 92cd9d1903cbc8ae839742d7e6a960c62e50a6dc /apps | |
parent | 7f88088739109de9efffe696b1c0abe20feb47c9 (diff) |
The maximum label size was too small for some translations (e.g. german).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9417 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/eq_menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/eq_menu.c b/apps/eq_menu.c index e93c033949..5dc554316c 100644 --- a/apps/eq_menu.c +++ b/apps/eq_menu.c @@ -235,7 +235,7 @@ static bool eq_gain_menu(void) int m, i; int *setting; bool result; - char gain_label[5][24]; + char gain_label[5][32]; static struct menu_item items[5] = { { NULL, eq_set_band0_gain }, { NULL, eq_set_band1_gain }, |