From c67b4c15dc32f9824951f37c9b1fa665b7d1307f Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Sat, 25 Dec 2010 20:55:30 +0000 Subject: Remove the 32 character limit on the lengths of filenames specified to -record (thanks AlexXav). Subversion-branch: /trunk/chocolate-doom Subversion-revision: 2225 --- src/g_game.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/g_game.c') diff --git a/src/g_game.c b/src/g_game.c index 7790b83e..f91e630e 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -139,7 +139,7 @@ int gametic; int levelstarttic; // gametic at level start int totalkills, totalitems, totalsecret; // for intermission -char demoname[32]; +char *demoname; boolean demorecording; boolean longtics; // cph's doom 1.91 longtics hack boolean lowres_turn; // low resolution turning for longtics @@ -2050,14 +2050,14 @@ void G_WriteDemoTiccmd (ticcmd_t* cmd) // // G_RecordDemo // -void G_RecordDemo (char* name) +void G_RecordDemo (char *name) { int i; int maxsize; usergame = false; - strcpy (demoname, name); - strcat (demoname, ".lmp"); + demoname = Z_Malloc(strlen(name) + 5, PU_STATIC, NULL); + sprintf(demoname, "%s.lmp", name); maxsize = 0x20000; //! -- cgit v1.2.3