diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2020-04-15 11:49:49 +0200 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2020-04-15 11:49:49 +0200 |
commit | 00cc15b28821456f66110e698b74362b8829e12f (patch) | |
tree | 3ae0a6ef5bd3067379160cea9b7c2d235277db39 /helpers.c | |
parent | 4304d06b8c585606cd45b3b5aff5e0c1849d9b94 (diff) | |
download | skin-nopacity-00cc15b28821456f66110e698b74362b8829e12f.tar.gz skin-nopacity-00cc15b28821456f66110e698b74362b8829e12f.tar.bz2 |
Fixed last fix
Diffstat (limited to 'helpers.c')
-rw-r--r-- | helpers.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ #include <vdr/skins.h> cOsd *CreateOsd(int Left, int Top, int Width, int Height) { - cOsd *osd = cOsdProvider::NewOsd(cOsd::OsdLeft() + Left,cOsd::OsdTop() + Top); + cOsd *osd = cOsdProvider::NewOsd(Left, Top); if (osd) { tArea Area = { 0, 0, Width - 1, Height - 1, 32 }; if (osd->SetAreas(&Area, 1) == oeOk) { |