diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2018-03-24 09:58:03 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2018-03-24 09:58:03 +0100 |
commit | 53aea17949a184d264bfd98c8e669b94997bfc79 (patch) | |
tree | aca55dd5c14cc9ae65241ee1eed57ecf1e1deb27 /device.c | |
parent | 1f16ada70ccf96fc8b2bf2f7b18b4e62afa33e9e (diff) | |
download | vdr-53aea17949a184d264bfd98c8e669b94997bfc79.tar.gz vdr-53aea17949a184d264bfd98c8e669b94997bfc79.tar.bz2 |
Fixed a possible discrepancy of the primary device number in the LSTD and PRIM commands
Diffstat (limited to 'device.c')
-rw-r--r-- | device.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: device.c 4.26 2018/01/27 14:45:08 kls Exp $ + * $Id: device.c 4.27 2018/03/24 09:49:14 kls Exp $ */ #include "device.h" @@ -195,6 +195,7 @@ bool cDevice::SetPrimaryDevice(int n) primaryDevice->MakePrimaryDevice(true); primaryDevice->SetVideoFormat(Setup.VideoFormat); primaryDevice->SetVolumeDevice(Setup.CurrentVolume); + Setup.PrimaryDVB = n + 1; return true; } esyslog("ERROR: invalid primary device number: %d", n + 1); |