Merge branch 'fix_stbi_write_hdr_core' of https://github.com/poppolopoppo/stb into working

master
Sean Barrett ago%!(EXTRA string=6 years)
commit ff1eb8b8d4
  1. 2
      stb_image_write.h

@ -744,7 +744,7 @@ static int stbi_write_hdr_core(stbi__write_context *s, int x, int y, int comp, f
s->func(s->context, buffer, len);
for(i=0; i < y; i++)
stbiw__write_hdr_scanline(s, x, comp, scratch, data + comp*x*(stbi__flip_vertically_on_write ? y-1-i : i)*x);
stbiw__write_hdr_scanline(s, x, comp, scratch, data + comp*x*(stbi__flip_vertically_on_write ? y-1-i : i));
STBIW_FREE(scratch);
return 1;
}

Loading…
Cancel
Save