Merge pull request #15 from mobyfab/master

Inverted touchpad fix
This commit is contained in:
Tectu 2012-11-10 08:13:05 -08:00
commit 800869979f

View file

@ -325,9 +325,14 @@ calibrate:
while(j < MAX_CAL_SAMPLES) { while(j < MAX_CAL_SAMPLES) {
if(tsPressed()) { if(tsPressed()) {
/* We have valid pointer data */ /* We have valid pointer data */
#if TOUCHSCREEN_XY_INVERTED == TRUE
py += _tsReadRealX();
px += _tsReadRealY();
#else
px += _tsReadRealX(); px += _tsReadRealX();
py += _tsReadRealY(); py += _tsReadRealY();
#endif
j++; j++;
} }
} }