d3dxof: Changed is_string function to accept spaces.

This commit is contained in:
Michael Curran 2011-04-10 16:31:45 -04:00 committed by Alexandre Julliard
parent 3d9ea480a0
commit 7d5099e4fc

View file

@ -475,7 +475,7 @@ static BOOL is_string(parse_buffer* buf)
if (*buf->buffer != '"')
return FALSE;
while (!is_separator(c = *(buf->buffer+pos+1)) && (pos < 99))
while (!is_operator(c = *(buf->buffer+pos+1)) && (pos < 99))
{
if (c == '"')
{