Skip to content

Commit

Permalink
feat(nanosvg): update to latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
Spasi committed Jan 4, 2025
1 parent e0daa9f commit 1a17546
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/lwjgl/nanovg/src/main/c/nanosvg.h
Original file line number Diff line number Diff line change
Expand Up @@ -1266,7 +1266,7 @@ static unsigned int nsvg__parseColorRGB(const char* str)
while (*str && nsvg__isdigit(*str)) str++; // skip fractional part
}
if (*str == '%') str++; else break;
while (nsvg__isspace(*str)) str++;
while (*str && nsvg__isspace(*str)) str++;
if (*str == delimiter[i]) str++;
else break;
}
Expand Down

0 comments on commit 1a17546

Please sign in to comment.