mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-28 21:31:04 +00:00
Double default replay size
This commit is contained in:
parent
ca401aac8a
commit
fcfce0bd49
1 changed files with 2 additions and 1 deletions
|
@ -5833,7 +5833,8 @@ void G_RecordDemo(const char *name)
|
|||
|
||||
strcpy(demoname, name);
|
||||
strcat(demoname, ".lmp");
|
||||
maxsize = 1024*1024;
|
||||
//@TODO make a maxdemosize cvar
|
||||
maxsize = 1024*1024*2;
|
||||
if (M_CheckParm("-maxdemo") && M_IsNextParm())
|
||||
maxsize = atoi(M_GetNextParm()) * 1024;
|
||||
// if (demobuffer)
|
||||
|
|
Loading…
Reference in a new issue