Fixed warnings.

This commit is contained in:
Branimir Karadžić
2015-09-04 16:03:57 -07:00
parent 6e9ed09d19
commit 5b7f5305b8
2 changed files with 22 additions and 21 deletions

View File

@@ -2048,7 +2048,7 @@ static void stbtt__fill_active_edges_new(float *scanline, float *scanline_fill,
static void stbtt__rasterize_sorted_edges(stbtt__bitmap *result, stbtt__edge *e, int n, int vsubsample, int off_x, int off_y, void *userdata)
{
(void)vsubsample;
stbtt__hheap hh = { 0 };
stbtt__hheap hh = {};
stbtt__active_edge *active = NULL;
int y,j=0, i;
float scanline_data[129], *scanline, *scanline2;