nuke another \ in command handling

This commit is contained in:
Bill Currie 2010-01-13 06:51:13 +00:00 committed by Jeff Teunissen
parent 70cc48826c
commit 6a8f14c701

View file

@ -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) {