From: Lars Op den Kamp Date: Thu, 25 Oct 2012 12:14:54 +0000 (+0200) Subject: fix for LG models that send a vendor key up after a normal key down. issue #71 X-Git-Tag: upstream/2.2.0~1^2~13^2~8 X-Git-Url: https://git.piment-noir.org/?p=deb_libcec.git;a=commitdiff_plain;h=b51aa340a6860399462a07beac1df4ade1187f5d fix for LG models that send a vendor key up after a normal key down. issue #71 --- diff --git a/src/lib/implementations/SLCommandHandler.h b/src/lib/implementations/SLCommandHandler.h index 2cbef7b..ec2a4ae 100644 --- a/src/lib/implementations/SLCommandHandler.h +++ b/src/lib/implementations/SLCommandHandler.h @@ -68,6 +68,7 @@ namespace CEC int HandleStandby(const cec_command &command); bool TransmitMenuState(const cec_logical_address UNUSED(iInitiator), const cec_logical_address UNUSED(iDestination), cec_menu_state UNUSED(menuState), bool UNUSED(bIsReply)) { return true; } bool PowerOn(const cec_logical_address iInitiator, const cec_logical_address iDestination); + int HandleVendorRemoteButtonUp(const cec_command& command) { return HandleUserControlRelease(command); } void ResetSLState(void); bool SLInitialised(void);