Emotion generic: Don't cancel player add cb on first try

If it's not the player we expect, let's give the other registered
callbacks a chance.



SVN revision: 69300
This commit is contained in:
Bruno Dilly 2012-03-13 18:48:31 +00:00
parent 6aa497cb88
commit b88eb4b9fc
1 changed files with 2 additions and 2 deletions

View File

@ -849,8 +849,8 @@ _player_add_cb(void *data, int type __UNUSED__, void *event)
if (ev->player.exe != player)
{
ERR("ev->player != player.");
return ECORE_CALLBACK_DONE;
INF("ev->player != player.");
return ECORE_CALLBACK_PASS_ON;
}
_player_send_cmd(ev, EM_CMD_INIT);