Jump to content


kostassti

Member Since 7 Apr 2013
Offline Last Active 14 Jul 2013 14:16
-----

Posts I've Made

In Topic: SOLO2: OpenPLi 3.0

7 April 2013 - 11:54

Here is a fix for RC numeric keys with the best regards to OpenPli team.
 

diff -u --recursive --new-file a/rc.cpp b/rc.cpp
--- original/rc.cpp 2012-08-19 17:26:07.000000000 +0400
+++ new/rc.cpp 2013-02-02 21:59:17.000000000 +0400
@@ -148,6 +148,9 @@

bool eRCInputEventDriver::isKeyboard()
{
+ /* this ugly fix for solo2 */
+ if (strcasestr(getDeviceName().c_str(), "remote") != NULL)
+  return false;
  /* check whether the input device has KEY_A, in which case we assume it is a keyboard */
  return hasCap(keyCaps, KEY_A);
}

 

 

Hi,

 

I've got the letters RC issue. Is that the right fix for me? How do you install this?

 

Thnx a lot!!