Wacom input device: Update Wacom Bamboo proximity check

* changes the proximity check to be much more forgiving when you go over
  the edge of the active area.
This commit is contained in:
Jeroen Oortwijn
2012-02-18 15:42:54 +01:00
committed by Jérôme Duval
parent 484b565ad0
commit 4ab51d63e2
@@ -339,7 +339,7 @@ TabletDevice::ReadData(const uchar* data, int dataBytes, bool& hasContact,
xPos = data[3] << 8 | data[2];
yPos = data[5] << 8 | data[4];
hasContact = (data[1] & 0x10) && (data[1] & 0x20);
hasContact = (data[1] & 0x20);
uint16 pressureData = data[7] << 8 | data[6];
pressure = (float)pressureData / 1023.0;