Module: wine Branch: master Commit: 7d5099e4fc221d2a309605ecc95d66e685d193a3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7d5099e4fc221d2a309605ecc9...
Author: Michael Curran curran.michaelp@gmail.com Date: Sun Apr 10 16:31:45 2011 -0400
d3dxof: Changed is_string function to accept spaces.
---
dlls/d3dxof/parsing.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/d3dxof/parsing.c b/dlls/d3dxof/parsing.c index dcef96b..0acb7d6 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 == '"') {