fix typo in accidentally-checked-in stb_image.h
This commit is contained in:
parent
4743a1a6e6
commit
7ac0f9c9b0
@ -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…
Reference in New Issue
Block a user