diff options
| author | Choupom <andycootlapin@hotmail.fr> | 2011-04-20 10:21:39 +0200 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-05-03 23:10:20 +0200 |
| commit | f8d21b48afa54f40b48c5e7c2985c1d4fff36fce (patch) | |
| tree | 6c3ebe1dd83008429edda657a3891845b1a18791 /src | |
| parent | 7f15b3ac5728c44e90a0f0486e17861796f88210 (diff) | |
| download | zcatch-f8d21b48afa54f40b48c5e7c2985c1d4fff36fce.tar.gz zcatch-f8d21b48afa54f40b48c5e7c2985c1d4fff36fce.zip | |
fixed a l10n bug for some languages
Diffstat (limited to 'src')
| -rw-r--r-- | src/game/client/components/menus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/client/components/menus.cpp b/src/game/client/components/menus.cpp index 53192714..6b577fd4 100644 --- a/src/game/client/components/menus.cpp +++ b/src/game/client/components/menus.cpp @@ -960,7 +960,7 @@ int CMenus::Render() Box.VMargin(20.f/UI()->Scale(), &Box); if(m_pClient->Editor()->HasUnsavedData()) { - char aBuf[128]; + char aBuf[256]; str_format(aBuf, sizeof(aBuf), "%s\n%s", Localize("There's an unsaved map in the editor, you might want to save it before you quit the game."), Localize("Quit anyway?")); UI()->DoLabelScaled(&Box, aBuf, 20.f, -1, Part.w-20.0f); } |