[ #4585 ] - fix for reading videoscape files

- yet again a file path that was too short ;)
This commit is contained in:
2006-07-06 17:15:13 +00:00
parent cfa193ad0b
commit 86ce9c71b6

View File

@@ -1013,7 +1013,7 @@ static void read_videoscape(char *str)
int file, type;
unsigned int val;
unsigned short numlen;
char name[FILE_MAXDIR+FILE_MAXFILE], head[FILE_MAXFILE], tail[FILE_MAXFILE];
char name[FILE_MAXDIR+FILE_MAXFILE], head[FILE_MAXDIR+FILE_MAXFILE], tail[FILE_MAXFILE];
strcpy(name, str);