increase buffer size for descriptions to 8K. http://bugs.eressea.de/view.php?id=1984

This commit is contained in:
Enno Rehling 2014-01-05 19:13:06 -08:00
parent 0f0cda214f
commit e0ce8877a5
1 changed files with 2 additions and 2 deletions

View File

@ -577,7 +577,7 @@ unit *read_unit(struct gamedata *data)
unit *u;
int number, n, p;
order **orderp;
char obuf[1024];
char obuf[DISPLAYSIZE];
faction *f;
char rname[32];
@ -1407,7 +1407,7 @@ int readgame(const char *filename, int backup)
unit *u;
int rmax = maxregions;
char path[MAX_PATH];
char name[NAMESIZE];
char name[DISPLAYSIZE];
const struct building_type *bt_lighthouse = bt_find("lighthouse");
gamedata gdata = { 0 };
storage store;