don't increment position coords twice during efx move operations

This commit is contained in:
Mike Blumenkrantz 2016-03-12 11:17:06 -05:00
parent 1fd9d8eee5
commit 48b6d54966
1 changed files with 2 additions and 2 deletions

View File

@ -26,8 +26,8 @@ static void
_move(E_EFX *e, int x, int y) _move(E_EFX *e, int x, int y)
{ {
e->x += x, e->y += y; e->x += x, e->y += y;
evas_object_move(e->obj, e->x + x, e->y + y); evas_object_move(e->obj, e->x, e->y);
//DBG("%p to (%d,%d)", e->obj, e->x + x, e->y + y); //DBG("%p to (%d,%d)", e->obj, e->x, e->y);
} }
static Eina_Bool static Eina_Bool