From 7cceda585defd3fd1ea1802095660c16d3a4ece2 Mon Sep 17 00:00:00 2001 From: inmarket Date: Sun, 28 Sep 2014 01:44:41 +1000 Subject: [PATCH] Fix newmouse compiler warning --- src/ginput/ginput_mouse.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/ginput/ginput_mouse.c b/src/ginput/ginput_mouse.c index ee6555b2..4e2bc2dd 100644 --- a/src/ginput/ginput_mouse.c +++ b/src/ginput/ginput_mouse.c @@ -52,9 +52,7 @@ static GTIMER_DECL(MouseTimer); // Calibration application #if !GINPUT_TOUCH_NOCALIBRATE - #if GINPUT_TOUCH_USER_CALIBRATION_LOAD - #include // Required for memcpy - #endif + #include // Required for memcpy static inline void CalibrationTransform(GMouseReading *pt, const GMouseCalibration *c) { pt->x = (coord_t) (c->ax * pt->x + c->bx * pt->y + c->cx);