Skip to content
Snippets Groups Projects
Commit 7d5099e4 authored by Michael Curran's avatar Michael Curran Committed by Alexandre Julliard
Browse files

d3dxof: Changed is_string function to accept spaces.

parent 3d9ea480
No related branches found
No related tags found
No related merge requests found
...@@ -475,7 +475,7 @@ static BOOL is_string(parse_buffer* buf) ...@@ -475,7 +475,7 @@ static BOOL is_string(parse_buffer* buf)
if (*buf->buffer != '"') if (*buf->buffer != '"')
return FALSE; return FALSE;
while (!is_separator(c = *(buf->buffer+pos+1)) && (pos < 99)) while (!is_operator(c = *(buf->buffer+pos+1)) && (pos < 99))
{ {
if (c == '"') if (c == '"')
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment