qbsp: don't warn about \b escape sequence

This commit is contained in:
Eric Wasylishen 2016-04-29 10:36:26 -06:00
parent 6459e53316
commit 7f31e6d4fd
1 changed files with 1 additions and 0 deletions

View File

@ -111,6 +111,7 @@ ParseToken(parser_t *p, int flags)
case 'r':
case 't':
case '\\':
case 'b': // tyrutils-ericw extension, parsed by light, used to toggle bold text
//regular two-char escapes
*token_p++ = *p->pos++;
if (token_p > &p->token[MAXTOKEN - 1])