diff options
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | mymenurecordings.c | 4 |
2 files changed, 7 insertions, 0 deletions
@@ -1,6 +1,9 @@ VDR Plugin 'extrecmenu' Revision History ---------------------------------------- +2012-xx-xx: Version 1.2.3 +- [amair] Fixed compiling with VDR 1.7.28. + 2012-04-29: Version 1.2.2 - [amair] Updated Italian translation (Submitted by Gringo) (Closes #673). - [amair] Don't show recordings menu if replay is stopped using kStop (Closes #934). diff --git a/mymenurecordings.c b/mymenurecordings.c index 0140b03..d2ea8c8 100644 --- a/mymenurecordings.c +++ b/mymenurecordings.c @@ -1031,7 +1031,11 @@ eOSState myMenuRecordings::Play() buffer=NULL; } golastreplayed=true; +#if VDRVERSNUM >= 10728 + myReplayControl::SetRecording(recording->FileName()); +#else myReplayControl::SetRecording(recording->FileName(),recording->Title()); +#endif cControl::Shutdown(); isyslog("[extrecmenu] starting replay of recording"); cControl::Launch(new myReplayControl()); |