summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-11-04 13:19:31 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2006-11-04 13:19:31 +0100
commit3dc4a71fe6cfa9511a0c2d8abd740af105e26d3b (patch)
tree800d68ea632ebf50476572483eb428e1290952d2 /menu.c
parentb8b41e41386ee29d25f151863d989d868c9c8929 (diff)
downloadvdr-3dc4a71fe6cfa9511a0c2d8abd740af105e26d3b.tar.gz
vdr-3dc4a71fe6cfa9511a0c2d8abd740af105e26d3b.tar.bz2
Fixed displaying the replay mode symbol in case of "Multi speed mode"1.4.4
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/menu.c b/menu.c
index 239ef72b..870216b7 100644
--- a/menu.c
+++ b/menu.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.c 1.444 2006/10/20 13:18:38 kls Exp $
+ * $Id: menu.c 1.445 2006/11/04 13:13:18 kls Exp $
*/
#include "menu.h"
@@ -3818,7 +3818,7 @@ cReplayControl::cReplayControl(void)
visible = modeOnly = shown = displayFrames = false;
lastCurrent = lastTotal = -1;
lastPlay = lastForward = false;
- lastSpeed = -1;
+ lastSpeed = -2; // an invalid value
timeoutShow = 0;
timeSearchActive = false;
marks.Load(fileName);
@@ -3885,7 +3885,7 @@ void cReplayControl::Hide(void)
needsFastResponse = visible = false;
modeOnly = false;
lastPlay = lastForward = false;
- lastSpeed = -1;
+ lastSpeed = -2; // an invalid value
timeSearchActive = false;
}
}