aboutsummaryrefslogtreecommitdiffstats
path: root/src/ginput
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2014-12-04 21:41:08 +1000
committerinmarket <andrewh@inmarket.com.au>2014-12-04 21:41:34 +1000
commit4931f39a0d26f53a03834cfdc65d5e365a928652 (patch)
tree47995b4908cfa685fe306525cf3a1442154985f0 /src/ginput
parent30b47f1581244e1ba4fd4b579f8082e2b551775a (diff)
downloaduGFX-4931f39a0d26f53a03834cfdc65d5e365a928652.tar.gz
uGFX-4931f39a0d26f53a03834cfdc65d5e365a928652.tar.bz2
uGFX-4931f39a0d26f53a03834cfdc65d5e365a928652.zip
Syntax Error Fix
Diffstat (limited to 'src/ginput')
-rw-r--r--src/ginput/ginput_mouse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ginput/ginput_mouse.c b/src/ginput/ginput_mouse.c
index 4a1906ec..9ecf7dc7 100644
--- a/src/ginput/ginput_mouse.c
+++ b/src/ginput/ginput_mouse.c
@@ -692,7 +692,7 @@ void _gmousePostInitDriver(GDriver *g) {
#if !GINPUT_TOUCH_NOCALIBRATE && !GINPUT_TOUCH_STARTRAW
if ((gmvmt(m)->d.flags & GMOUSE_VFLG_CALIBRATE)) {
#if GINPUT_TOUCH_USER_CALIBRATION_LOAD
- if (LoadMouseCalibration(gdriverGetDriverInstanceNumber((GDriver *)m), &m->caldata, sizeof(GMouseCalibration))))
+ if (LoadMouseCalibration(gdriverGetDriverInstanceNumber((GDriver *)m), &m->caldata, sizeof(GMouseCalibration)))
m->flags |= GMOUSE_FLG_CALIBRATE;
else
#endif