changed service call

This commit is contained in:
louis 2013-07-12 17:23:16 +02:00
parent ba3d6c07d0
commit 3f70106853
1 changed files with 3 additions and 3 deletions

View File

@ -195,9 +195,9 @@ bool cPluginTvguide::Service(const char *Id, void *Data)
if (strcmp(Id, "MainMenuHooksPatch-v1.0::osSchedule") == 0 && tvguideConfig.replaceOriginalSchedule != 0) {
if (Data == NULL)
return true;
cOsdMenu **menu = (cOsdMenu**) Data;
if (menu)
*menu = (cOsdMenu*) MainMenuAction();
cOsdObject **guide = (cOsdObject**) Data;
if (guide)
*guide = MainMenuAction();
return true;
}
return false;