Fix menu translation bug
authorH.G. Muller <h.g.muller@hccnet.nl>
Wed, 6 Oct 2010 12:20:03 +0000 (14:20 +0200)
committerArun Persaud <arun@nubati.net>
Fri, 8 Oct 2010 02:30:06 +0000 (19:30 -0700)
The menuText array was declared too small, so that the last entry of the
File menu got out of bounds and was overwritten by the first of the Mode
menu.

winboard/winboard.c

index b535d44..84f38fb 100644 (file)
@@ -332,7 +332,7 @@ int dialogItems[][40] = {
 \r
 static char languageBuf[50000], *foreign[1000], *english[1000], *languageFile[MSG_SIZ];\r
 static int lastChecked;\r
-static char oldLanguage[MSG_SIZ], *menuText[10][25];\r
+static char oldLanguage[MSG_SIZ], *menuText[10][30];\r
 extern int tinyLayout;\r
 extern char * menuBarText[][8];\r
 \r