type fix: change nsvg__parseLineJoin() default value to NSVG_JOIN_MITER

This commit is contained in:
Martin Lindhe 2018-03-16 15:05:04 +01:00
parent b0be83ba62
commit 19bf258060

View File

@ -1650,7 +1650,7 @@ static char nsvg__parseLineJoin(const char* str)
else if (strcmp(str, "bevel") == 0) else if (strcmp(str, "bevel") == 0)
return NSVG_JOIN_BEVEL; return NSVG_JOIN_BEVEL;
// TODO: handle inherit. // TODO: handle inherit.
return NSVG_CAP_BUTT; return NSVG_JOIN_MITER;
} }
static char nsvg__parseFillRule(const char* str) static char nsvg__parseFillRule(const char* str)