Disable debugging code.

This commit is contained in:
Cedric BAIL 2019-03-22 16:15:50 -07:00
parent cd761e5093
commit bbc29b232b
1 changed files with 2 additions and 0 deletions

View File

@ -1192,10 +1192,12 @@ _cb_anim(void *data EINA_UNUSED)
if (count++)
{
avg += current - last;
#if 0
if (abs(current - last - (avg / (count - 1))) > 0.05)
fprintf(stderr, "delta: %f vs %f\n",
current - last,
avg / (count - 1));
#endif
}
last = current;