mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
replace a missing ;
This commit is contained in:
parent
b406ea24a2
commit
2b560ad37d
1 changed files with 1 additions and 1 deletions
|
@ -871,7 +871,7 @@ CL_TimeDemo_f (void)
|
|||
}
|
||||
timedemo_runs = timedemo_count = max (timedemo_count, 1);
|
||||
if (timedemo_data)
|
||||
free (timedemo_data)
|
||||
free (timedemo_data);
|
||||
timedemo_data = calloc (timedemo_runs, sizeof (td_stats_t));
|
||||
strncpy (demoname, Cmd_Argv (1), sizeof (demoname));
|
||||
CL_StartTimeDemo ();
|
||||
|
|
Loading…
Reference in a new issue