diff options
Diffstat (limited to 'media-plugins/vdr-devstatus/files/vdr-devstatus-0.4.1-channelswitch.patch')
-rw-r--r-- | media-plugins/vdr-devstatus/files/vdr-devstatus-0.4.1-channelswitch.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/media-plugins/vdr-devstatus/files/vdr-devstatus-0.4.1-channelswitch.patch b/media-plugins/vdr-devstatus/files/vdr-devstatus-0.4.1-channelswitch.patch new file mode 100644 index 000000000000..fbba371b05ee --- /dev/null +++ b/media-plugins/vdr-devstatus/files/vdr-devstatus-0.4.1-channelswitch.patch @@ -0,0 +1,20 @@ +--- a/devstatus.c ++++ b/devstatus.c +@@ -122,7 +122,7 @@ + #else + virtual void Recording(const cDevice *Device, const char *Name); + #endif +- virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber); ++ virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber, bool LiveView); + }; + + cList<cRecObj> CurrentRecordings; +@@ -660,7 +660,7 @@ + } + } + +-void cDevStatusMonitor::ChannelSwitch(const cDevice *Device, int ChannelNumber) { ++void cDevStatusMonitor::ChannelSwitch(const cDevice *Device, int ChannelNumber, bool LiveView) { + if (!ChannelNumber) return; + update=1; + } |