mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 15:32:59 +02:00
compil fix for commit 1a425308ed
This commit is contained in:
@@ -2089,11 +2089,11 @@ std::string CChannelList::MaxChanNr()
|
||||
return maxchansize;
|
||||
}
|
||||
|
||||
void CChannelList::paint_pig (int x, int y, int w, int h)
|
||||
void CChannelList::paint_pig (int _x, int _y, int w, int h)
|
||||
{
|
||||
frameBuffer->paintBackgroundBoxRel (x, y, w, h);
|
||||
printf("CChannelList::paint_pig x %d y %d w %d h %d osd_w %d osd_w %d\n", x, y, w, h, frameBuffer->getScreenWidth(true), frameBuffer->getScreenHeight(true));
|
||||
videoDecoder->Pig(x, y, w, h, frameBuffer->getScreenWidth(true), frameBuffer->getScreenHeight(true));
|
||||
frameBuffer->paintBackgroundBoxRel (_x, _y, w, h);
|
||||
printf("CChannelList::paint_pig x %d y %d w %d h %d osd_w %d osd_w %d\n", _x, _y, w, h, frameBuffer->getScreenWidth(true), frameBuffer->getScreenHeight(true));
|
||||
videoDecoder->Pig(_x, _y, w, h, frameBuffer->getScreenWidth(true), frameBuffer->getScreenHeight(true));
|
||||
}
|
||||
|
||||
void CChannelList::paint_events(int index)
|
||||
@@ -2113,7 +2113,6 @@ void CChannelList::paint_events(int index)
|
||||
evt.description = g_Locale->getText(LOCALE_EPGLIST_NOEVENTS);
|
||||
evt.eventID = 0;
|
||||
evtlist.push_back(evt);
|
||||
|
||||
}
|
||||
|
||||
int i=1;
|
||||
@@ -2141,7 +2140,10 @@ void CChannelList::paint_events(int index)
|
||||
g_Font[SNeutrinoSettings::FONT_TYPE_EPG_INFO1]->RenderString(x+ width+5, y+ theight+ pig_height + i*ffheight, timewidth, text1, COL_MENUCONTENTDARK, 0, true);
|
||||
g_Font[SNeutrinoSettings::FONT_TYPE_EPG_INFO1]->RenderString(x+ width+5+timewidth+5, y+ theight+ pig_height + i*ffheight, infozone_width - timewidth - 20, e->description, COL_MENUCONTENTDARK, 0, true);
|
||||
}
|
||||
else break;
|
||||
else
|
||||
{
|
||||
break;
|
||||
}
|
||||
i++;
|
||||
}
|
||||
evtlist.clear();
|
||||
|
Reference in New Issue
Block a user