summaryrefslogtreecommitdiff
path: root/softhddevice.cpp
diff options
context:
space:
mode:
authorJohns <johns98@gmx.net>2011-12-17 19:25:08 +0100
committerJohns <johns98@gmx.net>2011-12-17 19:25:08 +0100
commit33460f1370b24bae464201e08bbc7bea26f98129 (patch)
treeba8aaa90a23a6918b36119f150f70d6e8cfc6dc2 /softhddevice.cpp
parent5ec46e94b4d54d29ac3cf8c38b3e8a14ee52c056 (diff)
downloadvdr-plugin-softhddevice-33460f1370b24bae464201e08bbc7bea26f98129.tar.gz
vdr-plugin-softhddevice-33460f1370b24bae464201e08bbc7bea26f98129.tar.bz2
Store config values, when menu leaves.
Diffstat (limited to 'softhddevice.cpp')
-rw-r--r--softhddevice.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/softhddevice.cpp b/softhddevice.cpp
index 68585c7..260cc5f 100644
--- a/softhddevice.cpp
+++ b/softhddevice.cpp
@@ -293,9 +293,11 @@ cMenuSetupSoft::cMenuSetupSoft(void)
*/
void cMenuSetupSoft::Store(void)
{
- SetupStore("MakePrimary", MakePrimary);
- SetupStore("Deinterlace", Deinterlace);
- SetupStore("Scaling", Scaling);
+ SetupStore("MakePrimary", ConfigMakePrimary = MakePrimary);
+ SetupStore("Deinterlace", ConfigVideoDeinterlace = Deinterlace);
+ VideoSetDeinterlace(ConfigVideoDeinterlace);
+ SetupStore("Scaling", ConfigVideoScaling = Scaling);
+ VideoSetScaling(ConfigVideoScaling);
}
//////////////////////////////////////////////////////////////////////////////