diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-10-12 09:45:51 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-10-12 09:45:51 +0200 |
commit | d14de196e8f47ed926a4f30c82bc7eb81c0a6af1 (patch) | |
tree | 18293b11e2f363f90a6364913c829fa27def1fa0 /dvbspu.c | |
parent | f163e785fb345c9e2589110724da1cc762af3cf9 (diff) | |
download | vdr-d14de196e8f47ed926a4f30c82bc7eb81c0a6af1.tar.gz vdr-d14de196e8f47ed926a4f30c82bc7eb81c0a6af1.tar.bz2 |
Fixed initializing the highlight area in cDvbSpuDecoder
Diffstat (limited to 'dvbspu.c')
-rw-r--r-- | dvbspu.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -8,7 +8,7 @@ * * parts of this file are derived from the OMS program. * - * $Id: dvbspu.c 1.4 2003/08/15 13:04:39 kls Exp $ + * $Id: dvbspu.c 1.5 2003/10/12 09:43:18 kls Exp $ */ #include <assert.h> @@ -297,6 +297,10 @@ void cDvbSpuDecoder::clearHighlight(void) { clean &= !highlight; highlight = false; + hlpsize.x1 = -1; + hlpsize.y1 = -1; + hlpsize.x2 = -1; + hlpsize.y2 = -1; } int cDvbSpuDecoder::ScaleYcoord(int value) |