d3dxof: Changed is_string function to accept spaces

Michael Curran curran.michaelp at gmail.com
Sun Apr 10 15:31:45 CDT 2011


-------------- next part --------------
---
 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 == '"')
     {
-- 
1.7.1


More information about the wine-patches mailing list