X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2FLibCEC.cpp;h=ebaae2db4584f4f04693adced24a9fc3fdf2f8ee;hb=7f9191154db80ab386da77ef6706961d9fbc8b97;hp=3ed7ace2b6946491be9ad45ae9dfbe2f6dfcca17;hpb=8fa354734e6dd2fd2e6fae68f7bbaf7ea84cbdfd;p=deb_libcec.git diff --git a/src/lib/LibCEC.cpp b/src/lib/LibCEC.cpp index 3ed7ace..ebaae2d 100644 --- a/src/lib/LibCEC.cpp +++ b/src/lib/LibCEC.cpp @@ -284,14 +284,14 @@ uint8_t CLibCEC::MuteAudio(bool bWait /* = true */) bool CLibCEC::SendKeypress(cec_logical_address iDestination, cec_user_control_code key, bool bWait /* = false */) { if (m_cec) - return m_cec->SendKeypress(iDestination, key); + return m_cec->TransmitKeypress(iDestination, key); return false; } bool CLibCEC::SendKeyRelease(cec_logical_address iDestination, bool bWait /* = false */) { if (m_cec) - return m_cec->SendKeyRelease(iDestination); + return m_cec->TransmitKeyRelease(iDestination); return false; }