entrance: Use strrchr instead of ecore_file_file_get

This commit is contained in:
Marcel Hollerbach 2014-04-08 19:55:37 +02:00
parent f1ef50f476
commit 3836ea49a9
1 changed files with 3 additions and 1 deletions

View File

@ -91,7 +91,9 @@ entrance_conf_background_title_gen(Entrance_Conf_Background *cbg)
if (cbg->group)
{
group_suffix = ecore_file_file_get(cbg->group);
group_suffix = strrchr(cbg->group, '/');
//no "/" char
group_suffix ++;
}
if ((group_suffix) && (filename))