This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
nanovg
mirror of
https://github.com/VCVRack/nanovg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
Fixed potentially uninitialized local variable warning
shared-context
Christian Forfang
11 years ago
parent
119f315a75
commit
893f31c318
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/nanovg.c
+ 1
- 1
src/nanovg.c
View File
@@ -1444,7 +1444,7 @@ static void nvg__calculateJoins(struct NVGcontext* ctx, float w, int lineJoin, f
{
struct NVGpathCache* cache = ctx->cache;
int i, j;
float iw;
float iw
= 0.0f
;
if (w > 0.0f) iw = 1.0f / w;
Write
Preview
Loading…
Cancel
Save