fix typo in accidentally-checked-in stb_image.h

master
Sean Barrett ago%!(EXTRA string=10 years)
parent 4743a1a6e6
commit 7ac0f9c9b0
  1. 2
      stb_image.h

@ -3544,7 +3544,7 @@ static void stbi__fill_bits(stbi__zbuf *z)
{ {
do { do {
STBI_ASSERT(z->code_buffer < (1U << z->num_bits)); STBI_ASSERT(z->code_buffer < (1U << z->num_bits));
z->code_buffer |= (usigned int) stbi__zget8(z) << z->num_bits; z->code_buffer |= (unsigned int) stbi__zget8(z) << z->num_bits;
z->num_bits += 8; z->num_bits += 8;
} while (z->num_bits <= 24); } while (z->num_bits <= 24);
} }

Loading…
Cancel
Save