From 0eb5da55a71a6f4cac56882764ebcdf0b2f6089d Mon Sep 17 00:00:00 2001 From: Sean Barrett Date: Sun, 13 Sep 2015 05:12:53 -0700 Subject: [PATCH] er, fix typo in the fix-rmitton checkin --- stb_image.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stb_image.h b/stb_image.h index f2c9e49..2a51403 100644 --- a/stb_image.h +++ b/stb_image.h @@ -5209,7 +5209,7 @@ static stbi_uc *stbi__psd_load(stbi__context *s, int *x, int *y, int *comp, int // Read the data. if (bitdepth == 16) { for (i = 0; i < pixelCount; i++, p += 4) - *p = stbi__get16be(s) >> 8 + *p = stbi__get16be(s) >> 8; } else { for (i = 0; i < pixelCount; i++, p += 4) *p = stbi__get8(s);