diff options
author | rodri <rgl@antares-labs.eu> | 2024-10-07 16:59:46 +0000 |
---|---|---|
committer | rodri <rgl@antares-labs.eu> | 2024-10-07 16:59:46 +0000 |
commit | 9ac2be4228b1dc8b9ccb1091680d80c3d7dc7673 (patch) | |
tree | 35700267ffb32665a9fee7d446342a430a934454 /obj.c | |
parent | 78739a666a7031db16648c7d629f567442ea16bd (diff) | |
download | libobj-9ac2be4228b1dc8b9ccb1091680d80c3d7dc7673.tar.gz libobj-9ac2be4228b1dc8b9ccb1091680d80c3d7dc7673.tar.bz2 libobj-9ac2be4228b1dc8b9ccb1091680d80c3d7dc7673.zip |
allow parentheses in material names (this is getting ridiculous.)
Diffstat (limited to 'obj.c')
-rw-r--r-- | obj.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -911,7 +911,7 @@ Line2: p = buf; do{ *p++ = c; - }while(c = Bgetc(bin), (isalnum(c) || c == '.' || c == '_' || c == '-') && p-buf < sizeof(buf)-1); + }while(c = Bgetc(bin), (isalnum(c) || c == '.' || c == '_' || c == '-' || c == '(' || c == ')') && p-buf < sizeof(buf)-1); *p = 0; if(obj->materials != nil && (m = getmtl(obj->materials, buf)) == nil){ error("no material '%s' found", buf); |