ui: silence clang warning

This commit is contained in:
Alastair Poole 2020-06-26 14:38:43 +01:00
parent 0416157c13
commit a00e6156ab
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ animator(void *data)
{
for (x = 0; x < w; x++)
{
if ((x == (w - anim->pos)))
if (x == (w - anim->pos))
{
*(pixels) = COLOR_BG;
}