diff options
Diffstat (limited to 'dynamicdevice.c')
-rw-r--r-- | dynamicdevice.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/dynamicdevice.c b/dynamicdevice.c index 21768c5..98efd37 100644 --- a/dynamicdevice.c +++ b/dynamicdevice.c @@ -909,6 +909,15 @@ int cDynamicDevice::NumProvidedSystems(void) const return cDevice::NumProvidedSystems(); } +#if VDRVERSNUM > 20101 +const cPositioner *cDynamicDevice::Positioner(void) const +{ + if (subDevice) + return subDevice->Positioner(); + return cDevice::Positioner(); +} +#endif + int cDynamicDevice::SignalStrength(void) const { if (subDevice) |