allow for all 16 bits

This commit is contained in:
sammyhw 2016-12-15 23:49:19 -05:00 committed by GitHub
parent 3e7f2d6ebd
commit ec9db6f84b

View File

@ -5719,7 +5719,7 @@ static void *stbi__psd_load(stbi__context *s, int *x, int *y, int *comp, int req
// Fill this channel with default data. // Fill this channel with default data.
if (bitdepth == 16 && bpc == 16) { if (bitdepth == 16 && bpc == 16) {
stbi__uint16 *q = ((stbi__uint16 *) out) + channel; 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) for (i = 0; i < pixelCount; i++, q += 4)
*q = val; *q = val;
} else { } else {