Wrecked Games

Please login or register.

Login with username, password and session length
Advanced search  

News:

We're just that awesome.

Author Topic: Input recognition bugfix  (Read 812 times)

Krulspeld

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 3
    • View Profile
Input recognition bugfix
« on: February 22, 2008, 06:15:44 AM »

I am using the gesture recognition addon and kept running into an error that occurred now and then. After some painfull debugging I found this nasty bug.

In stroke.cpp change line 126

Code: [Select]
if (copyLast && newInputList.size() > 2)

to

Code: [Select]
if (copyLast && newInputList.size() >= 2)
Logged