summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorscop <scop>2008-03-06 18:02:22 +0000
committerscop <scop>2008-03-06 18:02:22 +0000
commit31e30eff09bca671ace5c7291add52b5a49cb86f (patch)
tree11ffba4e3fc52113937f1d778e21cabb0151a879
parent66e179b14854ea3b5be913247b8df7b8229c358a (diff)
downloadvdr-plugin-dxr3-31e30eff09bca671ace5c7291add52b5a49cb86f.tar.gz
vdr-plugin-dxr3-31e30eff09bca671ace5c7291add52b5a49cb86f.tar.bz2
Pass correct Level to cOsd (Luca Olivetti, Sami Sundell).
-rw-r--r--CONTRIBUTORS1
-rw-r--r--HISTORY2
-rw-r--r--dxr3osd_subpicture.c2
3 files changed, 3 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index f748374..b90a016 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -26,6 +26,7 @@ Teemu Rantanen
Jarkko Santala
Marco Schlüßler
Stephan Skrodzki
+Sami Sundell
Ville Skyttä
Mikolaj Tutak
Mikko Tuumanen
diff --git a/HISTORY b/HISTORY
index 30a906e..04a244d 100644
--- a/HISTORY
+++ b/HISTORY
@@ -338,4 +338,4 @@ NOTE: I havent found time to include all of the languages, will be done in pre2
- Fix build with VDR >= 1.5.9 (Ville Skyttä)
- Drop support for VDR < 1.4.0 (Ville Skyttä)
- Implement OSD level for VDR >= 1.5.9 (Luca Olivetti)
-- Fix subtitles for VDR >= 1.5.11 (Luca Olivetti)
+- Fix subtitles for VDR >= 1.5.11 (Luca Olivetti, Sami Sundell)
diff --git a/dxr3osd_subpicture.c b/dxr3osd_subpicture.c
index 83ec05f..f7be998 100644
--- a/dxr3osd_subpicture.c
+++ b/dxr3osd_subpicture.c
@@ -37,7 +37,7 @@ public:
cDxr3SubpictureOsd::cDxr3SubpictureOsd(int Left, int Top) : cOsd(Left, Top)
#else
cDxr3SubpictureOsd::cDxr3SubpictureOsd(int Left, int Top, uint Level)
- : cOsd(Left, Top, 0)
+ : cOsd(Left, Top, Level)
#endif
{
shown = false;