From 199034ab9274a19316150586306e39fa26bbb73c Mon Sep 17 00:00:00 2001 From: Lars Op den Kamp Date: Sat, 11 Feb 2012 22:24:28 +0100 Subject: [PATCH] cec: lg expects the device type on 89:05. set deck status 0x20 only for recorders --- src/lib/implementations/SLCommandHandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/implementations/SLCommandHandler.cpp b/src/lib/implementations/SLCommandHandler.cpp index 125a23e..2475e14 100644 --- a/src/lib/implementations/SLCommandHandler.cpp +++ b/src/lib/implementations/SLCommandHandler.cpp @@ -228,7 +228,7 @@ void CSLCommandHandler::TransmitVendorCommand05(const cec_logical_address iSourc cec_command response; cec_command::Format(response, iSource, iDestination, CEC_OPCODE_VENDOR_COMMAND); response.PushBack(SL_COMMAND_CONNECT_ACCEPT); - response.PushBack((uint8_t)iSource); + response.PushBack((uint8_t)m_processor->m_busDevices[iSource]->GetType()); Transmit(response, false); } -- 2.34.1