summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <kls (at) cadsoft (dot) de>2003-08-26 18:00:00 +0200
committerKlaus Schmidinger <kls (at) cadsoft (dot) de>2003-08-26 18:00:00 +0200
commitfc9c149eb96f7a949c2f183693e4df15abe8dc4b (patch)
tree8bf7f7c75bc80efe79e7a74ff0af67ef710527cb /menu.c
parent5f5dfd7f69963abcdcceed88e649c83e6ea5709e (diff)
downloadvdr-patch-lnbsharing-fc9c149eb96f7a949c2f183693e4df15abe8dc4b.tar.gz
vdr-patch-lnbsharing-fc9c149eb96f7a949c2f183693e4df15abe8dc4b.tar.bz2
Version 1.2.4 (not officially released)vdr-1.2.4
- Fixed 'runvdr' to stay in the loop only if VDR returns an exit status of '1'. - Completed the Finnish OSD texts (thanks to Rolf Ahrenberg). - Empty values in setup.conf are no longer treated as an error (thanks to Andreas Kool for reporting this one). - Added a note about the config files of plugins to INSTALL (thanks to Thomas Keil). - VDR now continues to start up, even if there is an error in setup.conf. - Fixed a bug in resetting OSD color palettes (thanks to Torsten Herz). - Fixed starting a recording on the primary device if there is a replay session active (thanks to Javier Marcet for reporting this one). - Avoiding an unnecessary stop of an ongoing Transfer Mode when starting a recording on the primary device.
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/menu.c b/menu.c
index e3b3207..9cfd7c8 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.268 2003/08/17 08:52:07 kls Exp $
+ * $Id: menu.c 1.269 2003/08/24 14:28:44 kls Exp $
*/
#include "menu.h"
@@ -25,6 +25,7 @@
#include "sources.h"
#include "status.h"
#include "timers.h"
+#include "transfer.h"
#include "videodir.h"
#define MENUTIMEOUT 120 // seconds
@@ -3102,7 +3103,7 @@ bool cRecordControls::Start(cTimer *Timer, bool Pause)
if (device) {
if (NeedsDetachReceivers) {
Stop(device);
- if (device == cDevice::ActualDevice())
+ if (device == cTransferControl::ReceiverDevice())
cControl::Shutdown(); // in case this device was used for Transfer Mode
}
if (!device->SwitchChannel(channel, false)) {