neutrino: hdmi-cec standard off

Origin commit data
------------------
Commit: a215f64951
Author: max_10 <max_10@gmx.de>
Date: 2022-11-20 (Sun, 20 Nov 2022)

Origin message was:
------------------
- neutrino: hdmi-cec standard off
This commit is contained in:
max_10
2022-11-20 14:29:54 +01:00
committed by vanhofen
parent efa8db6f27
commit caef1eb2bc

View File

@@ -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);