diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2000-04-16 15:50:21 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2000-04-16 15:50:21 +0200 |
commit | 38f799579d63af92450dbc2504057fbf21cd469e (patch) | |
tree | 6d1897582078f6ff056c74303ae567499799a56c /menu.c | |
parent | e3fe42608da06dcaf6932472343b3f39ea1bcea3 (diff) | |
download | vdr-38f799579d63af92450dbc2504057fbf21cd469e.tar.gz vdr-38f799579d63af92450dbc2504057fbf21cd469e.tar.bz2 |
Removed DvbApi access from recording.c; added direct channel select
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'osm.c' for copyright information and * how to reach the author. * - * $Id: menu.c 1.3 2000/04/15 15:07:36 kls Exp $ + * $Id: menu.c 1.4 2000/04/16 15:45:44 kls Exp $ */ #include "menu.h" @@ -957,7 +957,7 @@ eOSState cMenuRecordings::Play(void) cMenuRecordingItem *ri = (cMenuRecordingItem *)Get(Current()); if (ri) { //XXX what if this recording's file is currently in use??? - if (ri->recording->Play()) + if (DvbApi.StartReplay(ri->recording->FileName())) return osEnd; } return osContinue; |