Commit 7d5099e4 authored by Michael Curran's avatar Michael Curran Committed by Alexandre Julliard

d3dxof: Changed is_string function to accept spaces.

parent 3d9ea480
......@@ -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 == '"')
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment