From 583b314db2051636f1e8d988f6ce0447272f5140 Mon Sep 17 00:00:00 2001 From: inmarket Date: Wed, 4 Nov 2015 15:05:47 +1000 Subject: [PATCH] Fix compiler errors for non-gcc compilers. --- src/ginput/ginput_mouse.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/ginput/ginput_mouse.c b/src/ginput/ginput_mouse.c index 881d6339..f149217d 100644 --- a/src/ginput/ginput_mouse.c +++ b/src/ginput/ginput_mouse.c @@ -56,8 +56,10 @@ static GTIMER_DECL(MouseTimer); #include // Required for memcpy static GFXINLINE void CalibrationTransform(GMouseReading *pt, const GMouseCalibration *c) { - coord_t x = (coord_t) (c->ax * pt->x + c->bx * pt->y + c->cx); - coord_t y = (coord_t) (c->ay * pt->x + c->by * pt->y + c->cy); + coord_t x, y; + + x = (coord_t) (c->ax * pt->x + c->bx * pt->y + c->cx); + y = (coord_t) (c->ay * pt->x + c->by * pt->y + c->cy); pt->x = x; pt->y = y;