Fix getTexel

This commit is contained in:
Miloslav Číž 2019-10-20 08:28:38 +02:00
parent 03a6c06042
commit 11afa2ae4b
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ static inline uint8_t SFG_getTexel(const uint8_t *texture, uint8_t x, uint8_t y)
y &= 0x1f;
return texture[
(texture[16 + (x * SFG_TEXTURE_SIZE + y) / 2] >> (4 * (y % 2))) & 0x0f];
(texture[16 + (x * SFG_TEXTURE_SIZE + y) / 2] >> (4 * (y % 2 == 0))) & 0x0f];
}
SFG_PROGRAM_MEMORY uint8_t