From: Lars Op den Kamp Date: Wed, 22 Feb 2012 10:40:16 +0000 (+0100) Subject: cec: fixed c+p monster - CRLCommandHandler is for Toshiba, not Panasonic X-Git-Tag: upstream/2.2.0~1^2~33^2~37 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=abec5f17e29ff169574dfd16a54380a19a8fc39b;hp=8f6e48cd4aaefa12c0a5cbd6cc17f8649396bdf6;p=deb_libcec.git cec: fixed c+p monster - CRLCommandHandler is for Toshiba, not Panasonic --- 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); } }