fix a silly bug that caused all parsed keys to be ""

This commit is contained in:
Bill Currie 2004-03-17 20:22:19 +00:00
parent 4f79d8ce0a
commit 199455d38f

View file

@ -199,7 +199,7 @@ GetToken (qboolean crossline)
map_error ("EOF inside quoted token");
if (*script_p == '\n')
script_line++;
*token_p++ = *script_p++;
script_p++;
}
dstring_copysubstr (&token, token_p, script_p - token_p);
script_p++;