From 7d5099e4fc221d2a309605ecc95d66e685d193a3 Mon Sep 17 00:00:00 2001 From: Michael Curran Date: Sun, 10 Apr 2011 16:31:45 -0400 Subject: [PATCH] d3dxof: Changed is_string function to accept spaces. --- dlls/d3dxof/parsing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/d3dxof/parsing.c b/dlls/d3dxof/parsing.c index dcef96bc613..0acb7d64be1 100644 --- a/dlls/d3dxof/parsing.c +++ b/dlls/d3dxof/parsing.c @@ -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 == '"') {