diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2007-10-13 10:34:30 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2007-10-13 10:34:30 +0200 |
commit | f99b293de4fd9b901d36420859e0945023bdfea2 (patch) | |
tree | c19e5d19a99e125c49c2f41cef8bdd5962f8af4a /device.c | |
parent | 20fd2553ff4db95369b1566d42200b6532727ca7 (diff) | |
download | vdr-f99b293de4fd9b901d36420859e0945023bdfea2.tar.gz vdr-f99b293de4fd9b901d36420859e0945023bdfea2.tar.bz2 |
Added a missing SetVolumeDevice() call in cDevice::SetPrimaryDevice()
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 1.143 2007/10/12 14:27:30 kls Exp $ + * $Id: device.c 1.144 2007/10/13 10:30:13 kls Exp $ */ #include "device.h" @@ -326,6 +326,7 @@ bool cDevice::SetPrimaryDevice(int n) primaryDevice = device[n]; primaryDevice->MakePrimaryDevice(true); primaryDevice->SetVideoFormat(Setup.VideoFormat); + primaryDevice->SetVolumeDevice(Setup.CurrentVolume); return true; } esyslog("ERROR: invalid primary device number: %d", n + 1); |