summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2006-09-20 01:53:50 +0000
committerphintuka <phintuka>2006-09-20 01:53:50 +0000
commit8c0725dee852679ee6932d1c405c9c9934e4f567 (patch)
treef3c75b5953686f97edf0fec1430843d3fc95ebb9
parentddb8983e726af5fa632fdf515fc05ffee22d19bc (diff)
downloadxineliboutput-8c0725dee852679ee6932d1c405c9c9934e4f567.tar.gz
xineliboutput-8c0725dee852679ee6932d1c405c9c9934e4f567.tar.bz2
Fix deinterlace method and options saving
-rw-r--r--setup_menu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/setup_menu.c b/setup_menu.c
index 6c920be4..f8c9c77b 100644
--- a/setup_menu.c
+++ b/setup_menu.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: setup_menu.c,v 1.10 2006-09-19 10:04:00 phintuka Exp $
+ * $Id: setup_menu.c,v 1.11 2006-09-20 01:53:50 phintuka Exp $
*
*/
@@ -629,8 +629,8 @@ void cMenuSetupVideo::Store(void)
xc.brightness = INDEX_TO_CONTROL(xc.brightness);
#endif
- //strcpy(xc.deinterlace_method, xc.s_deinterlaceMethods[deinterlace]);
- strcpy(xc.deinterlace_method, tvtime.ToString());
+ strcpy(xc.deinterlace_method, xc.s_deinterlaceMethods[deinterlace]);
+ strcpy(xc.deinterlace_opts, tvtime.ToString());
SetupStore("Video.Deinterlace", xc.deinterlace_method);
SetupStore("Video.DeinterlaceOptions", xc.deinterlace_opts);