cec: fixed c+p monster - CRLCommandHandler is for Toshiba, not Panasonic
[deb_libcec.git] / src / lib / implementations / RLCommandHandler.cpp
index c7e46823e92e13489f7d9b8ad2da0cea5c806ced..9643ee50f5f4c4bbdc339c342936317d81a8e5b9 100644 (file)
@@ -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);
   }
 }