From 4931f39a0d26f53a03834cfdc65d5e365a928652 Mon Sep 17 00:00:00 2001 From: inmarket Date: Thu, 4 Dec 2014 21:41:08 +1000 Subject: [PATCH] Syntax Error Fix --- src/ginput/ginput_mouse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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