diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-03-07 09:40:51 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-03-07 09:40:51 +0100 |
commit | e070d5462cf3d790f7230e872d517d35b67c9a6d (patch) | |
tree | 9e1544c470e5a5631bb5e30c628d8c9e921d896b /menu.c | |
parent | 12c0b0dd1507ccb6aa4d83ebc43f248816ff30f4 (diff) | |
download | vdr-e070d5462cf3d790f7230e872d517d35b67c9a6d.tar.gz vdr-e070d5462cf3d790f7230e872d517d35b67c9a6d.tar.bz2 |
Fixed handling timers in VPS margin if the EPG scan is turned on
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 1.294 2004/03/06 10:13:15 kls Exp $ + * $Id: menu.c 1.295 2004/03/07 09:40:34 kls Exp $ */ #include "menu.h" @@ -3195,6 +3195,7 @@ bool cRecordControls::Start(cTimer *Timer, bool Pause) if (device == cTransferControl::ReceiverDevice()) cControl::Shutdown(); // in case this device was used for Transfer Mode } + dsyslog("switching device %d to channel %d", device->DeviceNumber() + 1, channel->Number()); if (!device->SwitchChannel(channel, false)) { cThread::EmergencyExit(true); return false; |