mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 08:27:39 +00:00
fix a non-curses build issue
This commit is contained in:
parent
5e6ae08337
commit
4cabc2db82
1 changed files with 8 additions and 8 deletions
|
@ -118,14 +118,6 @@ static const byte attr_map[256] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
static void
|
|
||||||
C_ExecLine (const char *line)
|
|
||||||
{
|
|
||||||
if (line[0] == '/')
|
|
||||||
line++;
|
|
||||||
Cbuf_AddText (con_data.cbuf, line);
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
draw_fun_char (WINDOW *win, byte c)
|
draw_fun_char (WINDOW *win, byte c)
|
||||||
{
|
{
|
||||||
|
@ -227,6 +219,14 @@ sigwinch (int sig)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
static void
|
||||||
|
C_ExecLine (const char *line)
|
||||||
|
{
|
||||||
|
if (line[0] == '/')
|
||||||
|
line++;
|
||||||
|
Cbuf_AddText (con_data.cbuf, line);
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
sv_logfile_f (cvar_t *var)
|
sv_logfile_f (cvar_t *var)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue