summaryrefslogtreecommitdiff
path: root/helpers.c
diff options
context:
space:
mode:
authorkamel5 <vdr.kamel5 (at) gmx (dot) net>2020-04-15 11:49:49 +0200
committerkamel5 <vdr.kamel5 (at) gmx (dot) net>2020-04-15 11:49:49 +0200
commit00cc15b28821456f66110e698b74362b8829e12f (patch)
tree3ae0a6ef5bd3067379160cea9b7c2d235277db39 /helpers.c
parent4304d06b8c585606cd45b3b5aff5e0c1849d9b94 (diff)
downloadskin-nopacity-00cc15b28821456f66110e698b74362b8829e12f.tar.gz
skin-nopacity-00cc15b28821456f66110e698b74362b8829e12f.tar.bz2
Fixed last fix
Diffstat (limited to 'helpers.c')
-rw-r--r--helpers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers.c b/helpers.c
index b7cd0a6..5319ada 100644
--- a/helpers.c
+++ b/helpers.c
@@ -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) {