mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-20 17:31:08 +00:00
con_data clash. oops. :)
This commit is contained in:
parent
e10e2be1e3
commit
565bb92057
1 changed files with 3 additions and 3 deletions
|
@ -70,7 +70,7 @@ static __attribute__ ((unused)) const char rcsid[] =
|
|||
|
||||
#include "compat.h"
|
||||
|
||||
console_data_t con_data;
|
||||
static console_data_t sv_con_data;
|
||||
|
||||
static QFile *log_file;
|
||||
static cvar_t *sv_logfile;
|
||||
|
@ -225,7 +225,7 @@ C_ExecLine (const char *line)
|
|||
{
|
||||
if (line[0] == '/')
|
||||
line++;
|
||||
Cbuf_AddText (con_data.cbuf, line);
|
||||
Cbuf_AddText (sv_con_data.cbuf, line);
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -533,7 +533,7 @@ static plugin_data_t plugin_info_data = {
|
|||
&plugin_info_general_data,
|
||||
0,
|
||||
0,
|
||||
&con_data,
|
||||
&sv_con_data,
|
||||
};
|
||||
|
||||
static plugin_t plugin_info = {
|
||||
|
|
Loading…
Reference in a new issue