From abec5f17e29ff169574dfd16a54380a19a8fc39b Mon Sep 17 00:00:00 2001 From: Lars Op den Kamp Date: Wed, 22 Feb 2012 11:40:16 +0100 Subject: [PATCH] cec: fixed c+p monster - CRLCommandHandler is for Toshiba, not Panasonic --- src/lib/implementations/RLCommandHandler.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/implementations/RLCommandHandler.cpp b/src/lib/implementations/RLCommandHandler.cpp index c7e4682..9643ee5 100644 --- a/src/lib/implementations/RLCommandHandler.cpp +++ b/src/lib/implementations/RLCommandHandler.cpp @@ -41,13 +41,13 @@ using namespace PLATFORM; CRLCommandHandler::CRLCommandHandler(CCECBusDevice *busDevice) : CCECCommandHandler(busDevice) { - m_vendorId = CEC_VENDOR_PANASONIC; + m_vendorId = CEC_VENDOR_TOSHIBA; CCECBusDevice *primary = m_processor->GetPrimaryDevice(); - /* imitate Panasonice devices */ + /* imitate Toshiba devices */ if (primary && m_busDevice->GetLogicalAddress() != primary->GetLogicalAddress()) { - primary->SetVendorId(CEC_VENDOR_PANASONIC); + primary->SetVendorId(CEC_VENDOR_TOSHIBA); primary->ReplaceHandler(false); } } -- 2.34.1