From bdea8db7b066162269cc1d9d09d745983e5fadb0 Mon Sep 17 00:00:00 2001 From: Vladimir Nadvornik Date: Tue, 27 Sep 2011 22:06:09 +0200 Subject: [PATCH] set stereo.fixed default values to hdmi stereo standard --- src/options.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/options.c b/src/options.c index d333caf4..e35bca85 100644 --- a/src/options.c +++ b/src/options.c @@ -125,12 +125,12 @@ ConfOptions *init_options(ConfOptions *options) options->tree_descend_subdirs = FALSE; options->update_on_time_change = TRUE; - options->stereo.fixed_w = 640; - options->stereo.fixed_h = 200; + options->stereo.fixed_w = 1920; + options->stereo.fixed_h = 1080; options->stereo.fixed_x1 = 0; - options->stereo.fixed_y1 = 20; + options->stereo.fixed_y1 = 0; options->stereo.fixed_x2 = 0; - options->stereo.fixed_y2 = 260; + options->stereo.fixed_y2 = 1125; return options; } -- 2.20.1