d3dxof: Changed is_string function to accept spaces.
This commit is contained in:
parent
3d9ea480a0
commit
7d5099e4fc
|
@ -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 == '"')
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue