make penguins compile and work again

SVN revision: 84556
This commit is contained in:
Davide Andreoli 2013-06-13 18:39:16 +00:00
parent ecc60d961a
commit 4b078b2273
1 changed files with 2 additions and 2 deletions

View File

@ -580,7 +580,7 @@ _cb_animator(void *data)
else
{
edje_object_signal_emit(tux->obj, "start_walking_right", "epenguins");
tux->reverse = FALSE;
tux->reverse = EINA_FALSE;
}
}
if ((tux->y + tux->action->h) < pop->height)
@ -604,7 +604,7 @@ _cb_animator(void *data)
else
{
edje_object_signal_emit(tux->obj, "start_walking_left", "epenguins");
tux->reverse = TRUE;
tux->reverse = EINA_TRUE;
}
}
if ((tux->y + tux->action->h) < pop->height)