diff options
Diffstat (limited to 'headergrid.c')
-rw-r--r-- | headergrid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/headergrid.c b/headergrid.c index 280ea46..4bb25c8 100644 --- a/headergrid.c +++ b/headergrid.c @@ -24,8 +24,8 @@ void cHeaderGrid::createBackground(int num) { width = tvguideConfig.channelHeaderWidth;
height = tvguideConfig.rowHeight;
}
- pixmap = osdManager.requestPixmap(2, cRect(x, y, width, height));
- pixmapLogo = osdManager.requestPixmap(3, cRect(x, y, width, height));
+ pixmap = osdManager.requestPixmap(1, cRect(x, y, width, height));
+ pixmapLogo = osdManager.requestPixmap(2, cRect(x, y, width, height));
if ((!pixmap) || (!pixmapLogo)){
return;
}
|