From 4037c9fd07fbec1873549e71e0b1c2833a5a87db Mon Sep 17 00:00:00 2001 From: Lars Op den Kamp Date: Mon, 27 Oct 2014 14:42:30 +0100 Subject: [PATCH 1/8] [CEC] fixed: don't try to stick a value > 255 in a byte --- system/peripherals.xml | 2 +- xbmc/peripherals/devices/PeripheralCecAdapter.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/system/peripherals.xml b/system/peripherals.xml index 57af5d1..5fcff7c 100644 --- a/system/peripherals.xml +++ b/system/peripherals.xml @@ -30,7 +30,7 @@ - + diff --git a/xbmc/peripherals/devices/PeripheralCecAdapter.cpp b/xbmc/peripherals/devices/PeripheralCecAdapter.cpp index 9907ba2..1d068dc 100644 --- a/xbmc/peripherals/devices/PeripheralCecAdapter.cpp +++ b/xbmc/peripherals/devices/PeripheralCecAdapter.cpp @@ -1347,8 +1347,8 @@ void CPeripheralCecAdapter::SetConfigurationFromSettings(void) m_configuration.bPowerOffOnStandby = iStandbyAction == 13011 ? 1 : 0; m_configuration.bShutdownOnStandby = iStandbyAction == 13005 ? 1 : 0; - // double tap prevention timeout in ms - m_configuration.iDoubleTapTimeoutMs = GetSettingInt("double_tap_timeout_ms"); + // double tap prevention timeout in ms. libCEC uses 50ms units for this in 2.2.0, so divide by 50 + m_configuration.iDoubleTapTimeoutMs = GetSettingInt("double_tap_timeout_ms") / 50; } void CPeripheralCecAdapter::ReadLogicalAddresses(const CStdString &strString, cec_logical_addresses &addresses) -- 2.1.2