mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
nuke another \ in command handling
This commit is contained in:
parent
70cc48826c
commit
6a8f14c701
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ Con_ExecLine (const char *line)
|
|||
} else if (line[0] == '|') {
|
||||
Cbuf_AddText (cd->cbuf, line);
|
||||
Cbuf_AddText (cd->cbuf, "\n");
|
||||
} else if (line[0] == '\\' || line[0] == '/') {
|
||||
} else if (line[0] == '/') {
|
||||
Cbuf_AddText (cd->cbuf, line + 1);
|
||||
Cbuf_AddText (cd->cbuf, "\n");
|
||||
} else if (cd->exec_line) {
|
||||
|
|
Loading…
Reference in a new issue