Parcourir la source

Merge branch 'fix-truncation' of https://github.com/sammyhw/stb into working

Sean Barrett il y a 8 ans
Parent
commit
28c24f7b83
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      stb_image.h

+ 1 - 1
stb_image.h

@@ -5722,7 +5722,7 @@ static void *stbi__psd_load(stbi__context *s, int *x, int *y, int *comp, int req
             // Fill this channel with default data.
             if (bitdepth == 16 && bpc == 16) {
                stbi__uint16 *q = ((stbi__uint16 *) out) + channel;
-               stbi_uc val = channel == 3 ? 65535 : 0;
+               stbi__uint16 val = channel == 3 ? 65535 : 0;
                for (i = 0; i < pixelCount; i++, q += 4)
                   *q = val;
             } else {