From caef1eb2bc6f7a2db8afcc85d0f96b22733cbc57 Mon Sep 17 00:00:00 2001 From: max_10 Date: Sun, 20 Nov 2022 14:29:54 +0100 Subject: [PATCH] =?UTF-8?q?=C2=A0neutrino:=20hdmi-cec=20standard=20off?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/a215f649514c0498fce9de642687cb7d6656c2fd Author: max_10 Date: 2022-11-20 (Sun, 20 Nov 2022) Origin message was: ------------------ - neutrino: hdmi-cec standard off --- src/neutrino.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/neutrino.cpp b/src/neutrino.cpp index 3b00523e1..471c9b731 100644 --- a/src/neutrino.cpp +++ b/src/neutrino.cpp @@ -475,12 +475,12 @@ int CNeutrinoApp::loadSetup(const char *fname) #endif // hdmi cec - g_settings.hdmi_cec_mode = configfile.getInt32("hdmi_cec_mode", 1); - g_settings.hdmi_cec_view_on = configfile.getInt32("hdmi_cec_view_on", 1); - g_settings.hdmi_cec_sleep = configfile.getInt32("hdmi_cec_sleep", 1); - g_settings.hdmi_cec_standby = configfile.getInt32("hdmi_cec_standby", 1); - g_settings.hdmi_cec_volume = configfile.getInt32("hdmi_cec_volume", 1); - g_settings.hdmi_cec_wakeup = configfile.getInt32("hdmi_cec_wakeup", 1); + g_settings.hdmi_cec_mode = configfile.getInt32("hdmi_cec_mode", 0); + g_settings.hdmi_cec_view_on = configfile.getInt32("hdmi_cec_view_on", 0); + g_settings.hdmi_cec_sleep = configfile.getInt32("hdmi_cec_sleep", 0); + g_settings.hdmi_cec_standby = configfile.getInt32("hdmi_cec_standby", 0); + g_settings.hdmi_cec_volume = configfile.getInt32("hdmi_cec_volume", 0); + g_settings.hdmi_cec_wakeup = configfile.getInt32("hdmi_cec_wakeup", 01); // volume g_settings.current_volume = configfile.getInt32("current_volume", 75);